]> git.saurik.com Git - wxWidgets.git/commitdiff
EMX (OS/2) compilation fix. The implemented logic for not reloading Netscape
authorStefan Neis <Stefan.Neis@t-online.de>
Sun, 25 Aug 2002 18:16:19 +0000 (18:16 +0000)
committerStefan Neis <Stefan.Neis@t-online.de>
Sun, 25 Aug 2002 18:16:19 +0000 (18:16 +0000)
        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

src/generic/helpext.cpp

index 9f165b3a5040ee86a72b2debc39174bfa9d3a414..bfd3efb40390083c2aed79b68afc8601587f1313 100644 (file)
@@ -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;