/////////////////////////////////////////////////////////////////////////////
-// Name: helpext.cpp
+// Name: src/generic/helpext.cpp
// Purpose: an external help controller for wxWidgets
// Author: Karsten Ballueder
// Modified by:
#include <unistd.h>
#endif
+#ifdef __WINDOWS__
+#include "wx/msw/mslu.h"
+#endif
+
#ifdef __WXMSW__
#include <windows.h>
#include "wx/msw/winundef.h"
and a file mapping numerical Section numbers to relative URLS.
*/
-wxExtHelpController::wxExtHelpController()
+wxExtHelpController::wxExtHelpController(wxWindow* parentWindow):
+ wxHelpControllerBase(parentWindow)
{
m_MapList = (wxList*) NULL;
m_NumOfEntries = 0;
}
return true;
-#elif defined(__WXPM__)
+#elif defined(__OS2__)
wxString url;
url << m_MapFile << '\\' << relativeURL.BeforeFirst('#');
file = ifile;
if(! wxIsAbsolutePath(file))
{
- wxChar* f = wxGetWorkingDirectory();
- file = f;
- delete[] f; // wxGetWorkingDirectory returns new memory
+ file = wxGetCwd();
#ifdef __WXMAC__
file << ifile;
#else
file << m_MapFile << WXEXTHELP_SEPARATOR << contents;
if(file.Contains(wxT('#')))
file = file.BeforeLast(wxT('#'));
- if(contents.Length() && wxFileExists(file))
+ if(contents.length() && wxFileExists(file))
rc = DisplaySection(CONTENTS_ID);
// if not found, open homemade toc:
#endif // wxUSE_HELP
-