#include <wx/image.h>
#include <wx/wxhtml.h>
#include <wx/fs_zip.h>
+#include <wx/log.h>
// ----------------------------------------------------------------------------
// private classes
private:
wxHtmlHelpController *help;
- wxConfig* config;
};
bool MyApp::OnInit()
{
+#ifdef __WXMOTIF__
+ delete wxLog::SetActiveTarget(new wxLogStderr); // So dialog boxes aren't used
+#endif
+
wxInitAllImageHandlers();
wxFileSystem::AddHandler(new wxZipFSHandler);
- config = new wxConfig("wxHTMLhelp");
+ SetVendorName("wxWindows");
+ SetAppName("wxHTMLHelp");
+ wxConfig::Get(); // create an instance
+
help = new wxHtmlHelpController;
- help -> UseConfig(config);
if (argc < 2) {
wxLogError("Usage : helpview <helpfile> [<more helpfiles>]");
for (int i = 1; i < argc; i++)
help -> AddBook(argv[i]);
+#ifdef __WXMOTIF__
+ delete wxLog::SetActiveTarget(new wxLogGui);
+#endif
+
help -> DisplayContents();
return TRUE;
int MyApp::OnExit()
{
delete help;
- delete config;
+ delete wxConfig::Set(NULL);
return 0;
}