From 7d55cdc03363881d8566973282de9257f670aaec Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 7 Sep 2002 23:34:28 +0000 Subject: [PATCH] Compilation fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17062 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/msgout.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/msgout.cpp b/src/common/msgout.cpp index 0d03ccc7c1..dbe3786d91 100755 --- a/src/common/msgout.cpp +++ b/src/common/msgout.cpp @@ -104,7 +104,7 @@ void wxMessageOutputMessageBox::Printf(const wxChar* format, ...) wxString title; if ( wxTheApp ) - title.Printf(_("%s message"), wxTheApp->GetAppName().c_str()); + title.Printf(_T("%s message"), wxTheApp->GetAppName().c_str()); ::wxMessageBox(out, title); } -- 2.45.2