X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/211dfeddfca5c5992db510bdaa72226bf2013c05..0e32fdb872d413f14da8ce045766f0e2f13e202d:/src/html/htmltag.cpp diff --git a/src/html/htmltag.cpp b/src/html/htmltag.cpp index a422775025..1632ed6987 100644 --- a/src/html/htmltag.cpp +++ b/src/html/htmltag.cpp @@ -26,6 +26,7 @@ #include "wx/html/htmltag.h" #include "wx/html/htmlpars.h" +#include "wx/colour.h" #include // for vsscanf #include @@ -300,8 +301,14 @@ wxHtmlTag::wxHtmlTag(wxHtmlTag *parent, wxHtmlTag::~wxHtmlTag() { - for (wxHtmlTag *t = m_FirstChild; t; t = t->GetNextSibling()) - delete t; + wxHtmlTag *t1, *t2; + t1 = m_FirstChild; + while (t1) + { + t2 = t1->GetNextSibling(); + delete t1; + t1 = t2; + } } bool wxHtmlTag::HasParam(const wxString& par) const