]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/app.cpp
Fixed Get...String functions.
[wxWidgets.git] / src / gtk1 / app.cpp
index 8843aa8dad77ff1ffdad7aa5142e74b0c62b13bd..dbe4a42999a4d52ec8ca4939a57cd7fd05421ce1 100644 (file)
@@ -326,7 +326,7 @@ int wxEntry( int argc, char *argv[] )
   {
     if (!wxApp::GetInitializerFunction())
     {
-      printf( _("wxWindows error: No initializer - use IMPLEMENT_APP macro.\n") );
+      printf( "wxWindows error: No initializer - use IMPLEMENT_APP macro.\n" );
       return 0;
     }
 
@@ -339,13 +339,15 @@ int wxEntry( int argc, char *argv[] )
 
   if (!wxTheApp)
   {
-    printf( _("wxWindows error: wxTheApp == NULL\n") );
+    printf( "wxWindows error: wxTheApp == NULL\n" );
     return 0;
   }
 
   wxTheApp->argc = argc;
   wxTheApp->argv = argv;
 
+  gtk_set_locale();
+  
   gtk_init( &argc, &argv );
 
 #ifdef USE_GDK_IMLIB