X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/aba4387c4c71fb812c6a07a7abb495606c5ef4af..b231914f6abe2c148193b006a0919d60575f9a20:/samples/config/conftest.cpp?ds=sidebyside diff --git a/samples/config/conftest.cpp b/samples/config/conftest.cpp index 16ced7f3fe..19b06638e3 100644 --- a/samples/config/conftest.cpp +++ b/samples/config/conftest.cpp @@ -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")); } }