From a90253f00d9290c4682968f18a4f84a2b6d4a98a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 8 Sep 2002 00:29:08 +0000 Subject: [PATCH] correct compilation fix for the previous commit git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17065 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/msgout.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/common/msgout.cpp b/src/common/msgout.cpp index dbe3786d91..e6a079969e 100755 --- a/src/common/msgout.cpp +++ b/src/common/msgout.cpp @@ -32,6 +32,7 @@ #include "wx/string.h" #include "wx/ffile.h" #include "wx/app.h" + #include "wx/intl.h" #if wxUSE_GUI #include "wx/msgdlg.h" #endif // wxUSE_GUI @@ -104,7 +105,7 @@ void wxMessageOutputMessageBox::Printf(const wxChar* format, ...) wxString title; if ( wxTheApp ) - title.Printf(_T("%s message"), wxTheApp->GetAppName().c_str()); + title.Printf(_("%s message"), wxTheApp->GetAppName().c_str()); ::wxMessageBox(out, title); } -- 2.45.2