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:
parent
e768046774
commit
f58ea62596
93 changed files with 4362 additions and 4358 deletions
|
|
@ -66,15 +66,15 @@ bool MyApp::OnInit()
|
|||
wxInitAllImageHandlers();
|
||||
wxFileSystem::AddHandler(new wxZipFSHandler);
|
||||
|
||||
SetVendorName(wxT("wxWidgets"));
|
||||
SetAppName(wxT("wxHTMLHelp"));
|
||||
SetVendorName("wxWidgets");
|
||||
SetAppName("wxHTMLHelp");
|
||||
wxConfig::Get(); // create an instance
|
||||
|
||||
help = new wxHtmlHelpController;
|
||||
|
||||
if (argc < 2) {
|
||||
wxLogError(wxT("Usage : helpview <helpfile> [<more helpfiles>]"));
|
||||
wxLogError(wxT(" helpfile may be .hhp, .zip or .htb"));
|
||||
wxLogError("Usage : helpview <helpfile> [<more helpfiles>]");
|
||||
wxLogError(" helpfile may be .hhp, .zip or .htb");
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue