X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f7bdcdd70dc6e74e35185559e1c2ff2cac3e9e6e..298d86536801bde42431cee95a8ac1a921b83139:/samples/config/conftest.cpp diff --git a/samples/config/conftest.cpp b/samples/config/conftest.cpp index fe26c3b968..0dbc6cd148 100644 --- a/samples/config/conftest.cpp +++ b/samples/config/conftest.cpp @@ -142,7 +142,7 @@ MyFrame::MyFrame() : wxFrame((wxFrame *) NULL, -1, "wxConfig Demo") { // submenu - wxMenu *sub_menu = new wxMenu( wxMENU_TEAROFF ); + wxMenu *sub_menu = new wxMenu( wxEmptyString, wxMENU_TEAROFF ); sub_menu->Append(Minimal_About, "&About", "About this sample"); sub_menu->Append(Minimal_About, "&About", "About this sample"); sub_menu->Append(Minimal_About, "&About", "About this sample"); @@ -208,21 +208,21 @@ void MyFrame::OnQuit(wxCommandEvent&) void MyFrame::OnAbout(wxCommandEvent&) { - wxMessageBox("wxConfig demo\n© Vadim Zeitlin 1998", "About", + wxMessageBox(_T("wxConfig demo\n© Vadim Zeitlin 1998"), _T("About"), wxICON_INFORMATION | wxOK); } void MyFrame::OnDelete(wxCommandEvent&) { if ( wxConfigBase::Get()->DeleteAll() ) { - wxLogMessage("Config file/registry key successfully deleted."); + wxLogMessage(_T("Config file/registry key successfully deleted.")); delete wxConfigBase::Set((wxConfigBase *) NULL); wxConfigBase::DontCreateOnDemand(); } else { - wxLogError("Deleting config file/registry key failed."); + wxLogError(_T("Deleting config file/registry key failed.")); } }