Remove more wxT() macros from samples

Also use wxString instead of wxChar* strings.

Closes https://github.com/wxWidgets/wxWidgets/pull/950
This commit is contained in:
Blake Eryx
2018-09-29 17:16:12 +02:00
committed by Vadim Zeitlin
parent 480047ee9a
commit b70ed2d8c8
67 changed files with 1926 additions and 1932 deletions
+1 -1
View File
@@ -464,7 +464,7 @@ bool MyFrame::ProcessEvent(wxEvent& event)
}
catch ( const wxChar *msg )
{
wxLogMessage(wxT("Caught a string \"%s\" in MyFrame"), msg);
wxLogMessage("Caught a string \"%s\" in MyFrame", msg);
return true;
}