]> git.saurik.com Git - wxWidgets.git/blobdiff - src/generic/helphtml.cpp
corrected #ifdef TARGET_CARBON to #if TARGET_CARBON
[wxWidgets.git] / src / generic / helphtml.cpp
index f8731d8d17e625b8289ef6aa2c25b59b1c4f209c..1f3f59250fb1044c8e903367600b2f9425a8ba85 100644 (file)
@@ -166,7 +166,7 @@ wxHTMLHelpControllerBase::LoadFile(const wxString& ifile)
    m_MapList = new wxList;
    m_NumOfEntries = 0;
 
-   FILE *input = fopen(mapFile.fn_str(),"rt");
+   FILE *input = wxFopen(mapFile,wxT("rt"));
    if(! input)
       return FALSE;
    do
@@ -251,6 +251,16 @@ wxHTMLHelpControllerBase::DisplaySection(int sectionNo)
    return FALSE;
 }
 
+bool wxHTMLHelpControllerBase::DisplaySection(const wxString& section)
+{
+    bool isFilename = (section.Find(wxT(".htm")) != -1);
+
+    if (isFilename)
+        return DisplayHelp(section);
+    else
+        return KeywordSearch(section);
+}
+
 bool
 wxHTMLHelpControllerBase::DisplayBlock(long blockNo)
 {