]> git.saurik.com Git - wxWidgets.git/commitdiff
removed wxHtmlParser::GetTempData (internal function, obsoleted)
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 24 Dec 1999 23:27:46 +0000 (23:27 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 24 Dec 1999 23:27:46 +0000 (23:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5106 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/html/htmlpars.h
src/html/htmlwin.cpp

index acf972ff427d06ae245745e27f1fb4d5a1d233c3..e234456d4392a1ead88e2c76798a1b993a205cb7 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;
index 380ed40818b11f57637b675b0480d4aebc22a258..76e0c45e646d6e520cf85e980e037c7b10c0c553 100644 (file)
@@ -69,9 +69,6 @@ wxHtmlWindow::~wxHtmlWindow()
 
     if (m_Cell) delete m_Cell;
 
-    wxList *parser_data = m_Parser -> GetTempData();
-    if (parser_data) delete parser_data;
-
     delete m_Parser;
     delete m_FS;
 }