]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/config/conftest.cpp
added workaround for GTK+ focus_out bug (and removed Vaclav's mouse capture stack...
[wxWidgets.git] / samples / config / conftest.cpp
index 16ced7f3fe9791ad6f282b715434a31a6640b11b..19b06638e35faad5e71969e6767e5351c94a787a 100644 (file)
@@ -194,11 +194,11 @@ MyFrame::MyFrame()
   wxString s;
   if ( pConfig->Read("TestValue", &s) )
   {
-      wxLogStatus(this, "TestValue from config is '%s'", s.c_str());
+      wxLogStatus(this, wxT("TestValue from config is '%s'"), s.c_str());
   }
   else
   {
-      wxLogStatus(this, "TestValue not found in the config");
+      wxLogStatus(this, wxT("TestValue not found in the config"));
   }
 }