From b3c03420c876fccd6e12999e4a52d9470b9ef1f9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Thu, 3 Mar 2005 17:18:47 +0000 Subject: [PATCH] fixed crash when wxHtmlWindow's content is updated when making selection git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@32578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/html/htmlwin.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/html/htmlwin.cpp b/src/html/htmlwin.cpp index 00be22276a..69ced30b42 100644 --- a/src/html/htmlwin.cpp +++ b/src/html/htmlwin.cpp @@ -181,6 +181,7 @@ void wxHtmlWindow::Init() #endif // wxUSE_CLIPBOARD m_backBuffer = NULL; m_eraseBgInOnPaint = false; + m_tmpSelFromCell = NULL; } bool wxHtmlWindow::Create(wxWindow *parent, wxWindowID id, @@ -271,6 +272,9 @@ bool wxHtmlWindow::SetPage(const wxString& source) wxDELETE(m_selection); + // we will soon delete all the cells, so clear pointers to them: + m_tmpSelFromCell = NULL; + // pass HTML through registered processors: if (m_Processors || m_GlobalProcessors) { -- 2.45.2