From: Václav Slavík Date: Fri, 3 Oct 2003 18:30:38 +0000 (+0000) Subject: fixed memory leak (#817324) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6c24d95cf93efbcdc8aeab1333e076761dc3582a?ds=inline fixed memory leak (#817324) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24073 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/html/helpfrm.cpp b/src/html/helpfrm.cpp index e317b21598..90b3c02c77 100644 --- a/src/html/helpfrm.cpp +++ b/src/html/helpfrm.cpp @@ -501,6 +501,9 @@ wxHtmlHelpFrame::~wxHtmlHelpFrame() WX_CLEAR_HASH_TABLE(*m_PagesHash); delete m_PagesHash; } +#if wxUSE_PRINTING_ARCHITECTURE + if (m_Printer) delete m_Printer; +#endif }