]> git.saurik.com Git - wxWidgets.git/commitdiff
renamed m_MapFile into m_helpDir because this is what it really is
authorVadim Zeitlin <vadim@wxwidgets.org>
Mon, 27 Mar 2006 20:05:07 +0000 (20:05 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Mon, 27 Mar 2006 20:05:07 +0000 (20:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38393 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/generic/helpext.h
src/generic/helpext.cpp

index 9a721063c268bbe79d701720aefc94ef43760505..1305f108ffce5b8102a7c89bdc49a2297d1b86d0 100644 (file)
@@ -144,7 +144,7 @@ public:
 
 protected:
    /// Filename of currently active map file.
-   wxString         m_MapFile;
+   wxString         m_helpDir;
    /// How many entries do we have in the map file?
    int              m_NumOfEntries;
    /// A list containing all id,url,documentation triples.
index dfd66791cff19e431806bf47ac24e0c2bf9bff98..27da9579781d34620326227811a1b2bcf9733c29 100644 (file)
@@ -115,7 +115,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL)
 
 #if defined(__WXMSW__)
    wxString url;
-   url << m_MapFile << '\\' << relativeURL.BeforeFirst('#');
+   url << m_helpDir << '\\' << relativeURL.BeforeFirst('#');
    bool bOk = (int)ShellExecute(NULL, wxT("open"), url.c_str(),
                                 NULL, NULL, SW_SHOWNORMAL ) > 32;
    if ( !bOk )
@@ -128,7 +128,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL)
 #elif  defined(__OS2__)
 
    wxString url;
-   url << m_MapFile << '\\' << relativeURL.BeforeFirst('#');
+   url << m_helpDir << '\\' << relativeURL.BeforeFirst('#');
 //   will have to fix for OS/2, later.....DW
 //   bool bOk = (int)ShellExecute(NULL, "open", url,
 //                                NULL, NULL, SW_SHOWNORMAL ) > 32;
@@ -145,7 +145,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL)
    wxString command;
    command = m_BrowserName;
    command << wxT(" file://")
-           << m_MapFile << wxFILE_SEP_PATH << relativeURL;
+           << m_helpDir << wxFILE_SEP_PATH << relativeURL;
    return wxExecute(command) != 0;
 
 #else // UNIX
@@ -170,7 +170,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL)
       {
          long success;
          command << m_BrowserName << wxT(" -remote openURL(")
-                 << wxT("file://") << m_MapFile
+                 << wxT("file://") << m_helpDir
                  << wxFILE_SEP_PATH << relativeURL << wxT(")");
          success = wxExecute(command);
          if(success != 0 ) // returns PID on success
@@ -180,7 +180,7 @@ wxExtHelpController::DisplayHelp(const wxString &relativeURL)
 #endif
    command = m_BrowserName;
    command << wxT(" file://")
-           << m_MapFile << wxFILE_SEP_PATH << relativeURL;
+           << m_helpDir << wxFILE_SEP_PATH << relativeURL;
    return wxExecute(command) != 0;
 #endif
 }
@@ -366,7 +366,7 @@ bool wxExtHelpController::LoadFile(const wxString& file)
         return false;
     }
 
-    m_MapFile = helpDir.GetFullPath(); // now it's valid
+    m_helpDir = helpDir.GetFullPath(); // now it's valid
     return true;
 }
 
@@ -393,7 +393,7 @@ wxExtHelpController::DisplayContents()
 
    bool rc = false;
    wxString file;
-   file << m_MapFile << wxFILE_SEP_PATH << contents;
+   file << m_helpDir << wxFILE_SEP_PATH << contents;
    if(file.Contains(wxT('#')))
       file = file.BeforeLast(wxT('#'));
    if(contents.length() && wxFileExists(file))