From: Stefan Neis Date: Sun, 25 Aug 2002 18:16:19 +0000 (+0000) Subject: EMX (OS/2) compilation fix. The implemented logic for not reloading Netscape X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/de56032161f8780e776dd68e5371022f68f3f703 EMX (OS/2) compilation fix. The implemented logic for not reloading Netscape doesn't work and besides, Netscape is doing it automatically anyway. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16774 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/generic/helpext.cpp b/src/generic/helpext.cpp index 9f165b3a50..bfd3efb403 100644 --- a/src/generic/helpext.cpp +++ b/src/generic/helpext.cpp @@ -130,6 +130,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL) #else // UNIX wxString command; +#ifndef __EMX__ if(m_BrowserIsNetscape) // try re-loading first { wxString lockfile; @@ -155,6 +156,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL) return TRUE; } } +#endif command = m_BrowserName; command << wxT(" file://") << m_MapFile << WXEXTHELP_SEPARATOR << relativeURL;