]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/html/htmlpars.h
Fixed some warnings (don't know why dialoged Makefile is being committed)
[wxWidgets.git] / include / wx / html / htmlpars.h
index acf972ff427d06ae245745e27f1fb4d5a1d233c3..77e091e5a3b8071e76869f7c8255a47439d46e52 100644 (file)
@@ -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.
 };