// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
// ----------------------------------------------------------------------------
// private classes
// ----------------------------------------------------------------------------
// Define a new application type, each program should derive a class from wxApp
class MyApp : public wxApp
{
// Define a new application type, each program should derive a class from wxApp
class MyApp : public wxApp
{
- // this one is called on application startup and is a good place for the app
- // initialization (doing it here and not in the ctor allows to have an error
- // return: if OnInit() returns false, the application terminates)
+ // this one is called on application startup and is a good place for the app
+ // initialization (doing it here and not in the ctor allows to have an error
+ // return: if OnInit() returns false, the application terminates)
- wxLogError("Usage : helpview <helpfile> [<more helpfiles>]");
- wxLogError(" helpfile may be .hhp, .zip or .htb");
- return FALSE;
+ wxLogError(wxT("Usage : helpview <helpfile> [<more helpfiles>]"));
+ wxLogError(wxT(" helpfile may be .hhp, .zip or .htb"));
+ return false;