X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8793514e030bb826aaad33210366910175e2a469..ff3fd98a080f92ed9123d938d0eb26997cae5bea:/src/html/m_tables.cpp diff --git a/src/html/m_tables.cpp b/src/html/m_tables.cpp index d1971d0fb1..7377a36fef 100644 --- a/src/html/m_tables.cpp +++ b/src/html/m_tables.cpp @@ -685,6 +685,7 @@ TAG_HANDLER_BEGIN(TABLE, "TABLE,TR,TD,TH") { wxHtmlTableCell *oldt = m_Table; + wxHtmlContainerCell *oldEnclosing = m_enclosingContainer; m_enclosingContainer = c = m_WParser->OpenContainer(); m_Table = new wxHtmlTableCell(c, tag, m_WParser->GetPixelScale()); @@ -723,6 +724,7 @@ TAG_HANDLER_BEGIN(TABLE, "TABLE,TR,TD,TH") m_WParser->CloseContainer(); m_Table = oldt; + m_enclosingContainer = oldEnclosing; return true; // ParseInner() called }