]> git.saurik.com Git - wxWidgets.git/commitdiff
correct compilation fix for the previous commit
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Sep 2002 00:29:08 +0000 (00:29 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 8 Sep 2002 00:29:08 +0000 (00:29 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17065 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/msgout.cpp

index dbe3786d91e55c97432147da81730f56b8ac9ba9..e6a079969e17786e54a2f96e19ca64e85389f0fb 100755 (executable)
@@ -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);
 }