correct compilation fix for the previous commit

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@17065 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2002-09-08 00:29:08 +00:00
parent 456ae26d78
commit a90253f00d

View File

@ -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);
}