X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..fd4bc54da06b4191dff7d4bc6d80ccbba22b2566:/src/generic/helpext.cpp diff --git a/src/generic/helpext.cpp b/src/generic/helpext.cpp index 8f6276fb25..66f9096240 100644 --- a/src/generic/helpext.cpp +++ b/src/generic/helpext.cpp @@ -98,7 +98,9 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL) } else return true; + #elif defined(__WXPM__) + wxString url; url << m_MapFile << '\\' << relativeURL.BeforeFirst('#'); // will have to fix for OS/2, later.....DW @@ -111,8 +113,16 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL) // } // else return TRUE; -#else - // assume UNIX + +#elif defined(__DOS__) + + wxString command; + command = m_BrowserName; + command << wxT(" file://") + << m_MapFile << WXEXTHELP_SEPARATOR << relativeURL; + return wxExecute(command) != 0; + +#else // UNIX wxString command; if(m_BrowserIsNetscape) // try re-loading first