X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a7a4d01bdbb5c23d8f2025072f66ca91d3657bf3..cbee8f8dc777aa7131df267f78be377d85a10cda:/include/wx/html/htmlpars.h?ds=sidebyside diff --git a/include/wx/html/htmlpars.h b/include/wx/html/htmlpars.h index acf972ff42..77e091e5a3 100644 --- a/include/wx/html/htmlpars.h +++ b/include/wx/html/htmlpars.h @@ -89,15 +89,6 @@ class WXDLLEXPORT wxHtmlParser : public wxObject wxString* GetSource() {return &m_Source;} - virtual wxList* GetTempData() {return NULL;} - // this method returns list of wxObjects that represents - // all data allocated by the parser. These can't be freeded - // by destructor because they must be valid as long as - // GetProduct's return value is valid - the caller must - // explicitly call delete MyParser -> GetTempData() to free - // the memory - // (this method always sets the list to delete its contents) - protected: virtual void AddText(const char* txt) = 0; @@ -183,7 +174,7 @@ class WXDLLEXPORT wxHtmlTagHandler : public wxObject // FALSE etherwise protected: - void ParseInner(const wxHtmlTag& tag) {m_Parser -> DoParsing(tag.GetBeginPos(), tag.GetEndPos1());} + void ParseInner(const wxHtmlTag& tag) {m_Parser->DoParsing(tag.GetBeginPos(), tag.GetEndPos1());} // parses input between beginning and ending tag. // m_Parser must be set. };