From: Mattia Barbon Date: Tue, 5 Aug 2003 17:41:14 +0000 (+0000) Subject: Unicode compilation fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/82c75aeab892dbb0be1b849f7d661ac2abb0714b Unicode compilation fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22602 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/app.h b/include/wx/app.h index d5f4c70b71..3698f65a09 100644 --- a/include/wx/app.h +++ b/include/wx/app.h @@ -629,7 +629,7 @@ public: wxAppConsole *wxCreateApp() \ { \ wxAppConsole::CheckBuildOptions(WX_BUILD_OPTIONS_SIGNATURE, \ - wxT("your program")); \ + "your program"); \ return new appname; \ } \ wxAppInitializer \