From bff010281d8ef95dfa9b277112c85389f1f27e59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 10 Nov 2002 00:05:39 +0000 Subject: [PATCH] Uncommented code that was commented out by mistake git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@17794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmlpars.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/html/htmlpars.cpp b/src/html/htmlpars.cpp index 50f6b386dd..9ed716fe81 100644 --- a/src/html/htmlpars.cpp +++ b/src/html/htmlpars.cpp @@ -855,7 +855,7 @@ bool wxMetaTagHandler::HandleTag(const wxHtmlTag& tag) { if (tag.GetName() == _T("BODY")) { -// m_Parser->StopParsing(); + m_Parser->StopParsing(); return FALSE; } @@ -867,7 +867,7 @@ bool wxMetaTagHandler::HandleTag(const wxHtmlTag& tag) if (content.Left(19) == _T("text/html; charset=")) { *m_retval = content.Mid(19); -// m_Parser->StopParsing(); + m_Parser->StopParsing(); } } return FALSE;