From 9419379a37aaa7d5ac7b92187b9f296cd46f9e81 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 6 Jan 2003 21:12:15 +0000 Subject: [PATCH] Make it build in Unicode mode again git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18605 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/memory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/common/memory.cpp b/src/common/memory.cpp index a7439bacfd..0af3fa2c1a 100644 --- a/src/common/memory.cpp +++ b/src/common/memory.cpp @@ -349,7 +349,7 @@ void wxMemStruct::PrintNode () } else { - wxString msg(""); + wxString msg(wxT("")); if (m_fileName) msg.Printf(wxT("%s(%d): "), m_fileName, (int)m_lineNum); @@ -387,7 +387,7 @@ void wxMemStruct::Dump () else msg += wxT("unknown object class"); - wxString msg2(""); + wxString msg2(wxT("")); msg2.Printf(wxT(" at $%lX, size %d"), (long)GetActualData(), (int)RequestSize()); msg += msg2; @@ -399,7 +399,7 @@ void wxMemStruct::Dump () 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); @@ -607,7 +607,7 @@ bool wxDebugContext::Dump(void) #ifdef __WXDEBUG__ { wxChar* appName = (wxChar*) wxT("application"); - wxString appNameStr(""); + wxString appNameStr(wxT("")); if (wxTheApp) { appNameStr = wxTheApp->GetAppName();