git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@46654
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
private:
// implement sink functions
private:
// implement sink functions
- virtual void DoLog(wxLogLevel level, const wxChar *szString, time_t t)
+ virtual void DoLog(wxLogLevel level, const wxString& str, time_t t)
{
// don't put trace messages into listbox or we can get into infinite
// recursion
{
// don't put trace messages into listbox or we can get into infinite
// recursion
if ( m_logOld )
{
// cast is needed to call protected method
if ( m_logOld )
{
// cast is needed to call protected method
- ((LboxLogger *)m_logOld)->DoLog(level, szString, t);
+ ((LboxLogger *)m_logOld)->DoLog(level, str, t);
- wxLog::DoLog(level, szString, t);
+ wxLog::DoLog(level, str, t);
- virtual void DoLogString(const wxChar *szString, time_t WXUNUSED(t))
+ virtual void DoLogString(const wxString& str, time_t WXUNUSED(t))
{
wxString msg;
TimeStamp(&msg);
{
wxString msg;
TimeStamp(&msg);
#ifdef __WXUNIVERSAL__
m_lbox->AppendAndEnsureVisible(msg);
#ifdef __WXUNIVERSAL__
m_lbox->AppendAndEnsureVisible(msg);