]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/helpdata.h
wxNativeFontInfo changes
[wxWidgets.git] / include / wx / html / helpdata.h
index 972c90f7325793db42769fd3e0090661ecde8b5e..e5b96e3965236842df61e4e791529a0fc0d6a4e1 100644 (file)
@@ -24,6 +24,7 @@
 #include "wx/string.h"
 #include "wx/filesys.h"
 #include "wx/dynarray.h"
+#include "wx/font.h"
 
 //--------------------------------------------------------------------------------
 // helper classes & structs
@@ -84,7 +85,7 @@ class WXDLLEXPORT wxSearchEngine : public wxObject
 {
     public:
         wxSearchEngine() : wxObject() {m_Keyword = NULL; }
-        ~wxSearchEngine() {if (m_Keyword) free(m_Keyword); }
+        ~wxSearchEngine() {if (m_Keyword) delete[] m_Keyword; }
 
         virtual void LookFor(const wxString& keyword, bool case_sensitive, bool whole_words_only);
         // Sets the keyword we will be searching for
@@ -153,6 +154,7 @@ class WXDLLEXPORT wxHtmlHelpData : public wxObject
         // See documentation for details on its format.
         // Returns success.
         bool AddBookParam(const wxFSFile& bookfile,
+                          wxFontEncoding encoding,
                           const wxString& title, const wxString& contfile,
                           const wxString& indexfile = wxEmptyString,
                           const wxString& deftopic = wxEmptyString,