/////////////////////////////////////////////////////////////////////////////
// Name: helpview.cpp
// Purpose: wxHtml help browser
+// Please note: see utils/helpview for a more fully-featured
+// standalone help browser.
/////////////////////////////////////////////////////////////////////////////
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(__APPLE__)
#pragma implementation "help.cpp"
#pragma interface "help.cpp"
#endif
#include "wx/wxhtml.h"
#include "wx/fs_zip.h"
#include "wx/log.h"
+#include "wx/filedlg.h"
// ----------------------------------------------------------------------------
// private classes
wxInitAllImageHandlers();
wxFileSystem::AddHandler(new wxZipFSHandler);
- SetVendorName("wxWindows");
- SetAppName("wxHTMLHelp");
+ SetVendorName(wxT("wxWindows"));
+ SetAppName(wxT("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"));
}
for (int i = 1; i < argc; i++)
- help -> AddBook(argv[i]);
+ help->AddBook(wxFileName(argv[i]));
#ifdef __WXMOTIF__
delete wxLog::SetActiveTarget(new wxLogGui);