Remove (most) occurrences of wxT() macro from the samples

Also replace wxChar* with wxString.

Closes https://github.com/wxWidgets/wxWidgets/pull/945
This commit is contained in:
Blake-Eryx
2018-09-23 01:15:08 +02:00
committed by Vadim Zeitlin
parent e768046774
commit f58ea62596
93 changed files with 4362 additions and 4358 deletions

View File

@@ -99,7 +99,7 @@ bool MyApp::OnInit()
return false;
// create the main application window
MyFrame *frame = new MyFrame(wxT("wxArtProvider sample"),
MyFrame *frame = new MyFrame("wxArtProvider sample",
wxPoint(50, 50), wxSize(450, 340));
frame->Show(true);
return true;
@@ -156,23 +156,23 @@ MyFrame::MyFrame(const wxString& title, const wxPoint& pos, const wxSize& size,
// the "About" item should be in the help menu
wxMenu *helpMenu = new wxMenu;
helpMenu->Append(wxID_ABOUT, wxT("&About\tF1"), wxT("Show about dialog"));
helpMenu->Append(wxID_ABOUT, "&About\tF1", "Show about dialog");
menuFile->AppendCheckItem(ID_PlugProvider, wxT("&Plug-in art provider"), wxT("Enable custom art provider"));
menuFile->AppendCheckItem(ID_PlugProvider, "&Plug-in art provider", "Enable custom art provider");
menuFile->AppendSeparator();
#if wxUSE_LOG
menuFile->Append(ID_Logs, wxT("&Logging test"), wxT("Show some logging output"));
menuFile->Append(ID_Logs, "&Logging test", "Show some logging output");
#endif // wxUSE_LOG
menuFile->Append(ID_Browser, wxT("&Resources browser"), wxT("Browse all available icons"));
menuFile->Append(ID_Browser, "&Resources browser", "Browse all available icons");
menuFile->AppendSeparator();
menuFile->Append(ID_Quit, wxT("E&xit\tAlt-X"), wxT("Quit this program"));
menuFile->Append(ID_Quit, "E&xit\tAlt-X", "Quit this program");
// now append the freshly created menu to the menu bar...
wxMenuBar *menuBar = new wxMenuBar();
menuBar->Append(menuFile, wxT("&File"));
menuBar->Append(helpMenu, wxT("&Help"));
menuBar->Append(menuFile, "&File");
menuBar->Append(helpMenu, "&Help");
// ... and attach this menu bar to the frame
SetMenuBar(menuBar);
@@ -190,22 +190,22 @@ void MyFrame::OnQuit(wxCommandEvent& WXUNUSED(event))
#if wxUSE_LOG
void MyFrame::OnLogs(wxCommandEvent& WXUNUSED(event))
{
wxLogMessage(wxT("Some information."));
wxLogError(wxT("This is an error."));
wxLogWarning(wxT("A warning."));
wxLogError(wxT("Yet another error."));
wxLogMessage("Some information.");
wxLogError("This is an error.");
wxLogWarning("A warning.");
wxLogError("Yet another error.");
wxLog::GetActiveTarget()->Flush();
wxLogMessage(wxT("Check/uncheck 'File/Plug-in art provider' and try again."));
wxLogMessage("Check/uncheck 'File/Plug-in art provider' and try again.");
}
#endif // wxUSE_LOG
void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
wxString msg;
msg.Printf( wxT("This is the about dialog of wxArtProvider sample.\n")
wxT("Welcome to %s"), wxVERSION_STRING);
msg.Printf( "This is the about dialog of wxArtProvider sample.\n"
"Welcome to %s", wxVERSION_STRING);
wxMessageBox(msg, wxT("About wxArtProvider sample"),
wxMessageBox(msg, "About wxArtProvider sample",
wxOK | wxICON_INFORMATION, this);
}