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
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)
{