Added main() and corrected VC++ project settings

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13328 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-01-03 12:02:47 +00:00
parent 1c66f293b6
commit 31dc7e4995
2 changed files with 25 additions and 5 deletions

View File

@@ -92,7 +92,7 @@ public:
virtual int OnRun();
};
IMPLEMENT_APP(HelpGenApp);
// IMPLEMENT_APP(HelpGenApp);
// -----------------------------------------------------------------------------
// private functions
@@ -787,6 +787,21 @@ int HelpGenApp::OnRun()
return 0;
}
int main(int argc, char **argv)
{
wxInitializer initializer;
if ( !initializer )
{
fprintf(stderr, "Failed to initialize the wxWindows library, aborting.");
return -1;
}
HelpGenApp app;
app.argc = argc;
app.argv = argv;
return app.OnRun();
}
// -----------------------------------------------------------------------------
// HelpGenVisitor implementation
// -----------------------------------------------------------------------------
@@ -2134,6 +2149,9 @@ static const wxString GetVersionString()
/*
$Log$
Revision 1.18 2002/01/03 12:02:47 JS
Added main() and corrected VC++ project settings
Revision 1.17 2001/11/30 21:43:35 VZ
now the methods are sorted in the correct order in the generated docs