-1->wxID_ANY, TRUE->true and FALSE->false replacements.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27383 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Włodzimierz Skiba
2004-05-21 11:29:38 +00:00
parent d804ec694d
commit 348469c284
6 changed files with 37 additions and 38 deletions

View File

@@ -1,4 +1,3 @@
/////////////////////////////////////////////////////////////////////////////
// Name: helpview.cpp
// Purpose: wxHtml help browser
@@ -75,7 +74,7 @@ bool MyApp::OnInit()
if (argc < 2) {
wxLogError(wxT("Usage : helpview <helpfile> [<more helpfiles>]"));
wxLogError(wxT(" helpfile may be .hhp, .zip or .htb"));
return FALSE;
return false;
}
for (int i = 1; i < argc; i++)
@@ -87,7 +86,7 @@ bool MyApp::OnInit()
help -> DisplayContents();
return TRUE;
return true;
}