Index: src/common/memory.cpp =================================================================== RCS file: /pack/cvsroots/wxwindows/wxWindows/src/common/memory.cpp,v retrieving revision 1.51 diff -u -4 -r1.51 memory.cpp --- src/common/memory.cpp 2002/09/12 08:51:01 1.51 +++ src/common/memory.cpp 2003/01/06 20:45:27 @@ -348,9 +348,9 @@ wxLogMessage(msg); } else { - wxString msg(""); + wxString msg(wxT("")); if (m_fileName) msg.Printf(wxT("%s(%d): "), m_fileName, (int)m_lineNum); msg += wxT("non-object data"); @@ -386,9 +386,9 @@ msg += obj->GetClassInfo()->GetClassName(); else msg += wxT("unknown object class"); - wxString msg2(""); + wxString msg2(wxT("")); msg2.Printf(wxT(" at $%lX, size %d"), (long)GetActualData(), (int)RequestSize()); msg += msg2; wxLogMessage(msg); @@ -398,9 +398,9 @@ wxString msg(wxT("")); if (m_fileName) msg.Printf(wxT("%s(%d): "), m_fileName, (int)m_lineNum); - wxString msg2(""); + wxString msg2(wxT("")); msg2.Printf(wxT("non-object data at $%lX, size %d"), (long)GetActualData(), (int)RequestSize() ); msg += msg2; wxLogMessage(msg); } @@ -606,9 +606,9 @@ { #ifdef __WXDEBUG__ { wxChar* appName = (wxChar*) wxT("application"); - wxString appNameStr(""); + wxString appNameStr(wxT("")); if (wxTheApp) { appNameStr = wxTheApp->GetAppName(); appName = WXSTRINGCAST appNameStr;