]> git.saurik.com Git - wxWidgets.git/commitdiff
Fixed wxTabFrame leak by deleting all pages in the dtor (fixes bug [ 1774394 ] wxAuiN...
authorJulian Smart <julian@anthemion.co.uk>
Tue, 21 Aug 2007 08:05:14 +0000 (08:05 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Tue, 21 Aug 2007 08:05:14 +0000 (08:05 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48252 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/aui/auibook.cpp

index e8f25b28d7e9f5492c1d00ff6863f606ac02cd2f..ee776091623d412419dc5d40e24cd585976fd55d 100644 (file)
@@ -2796,6 +2796,9 @@ void wxAuiNotebook::InitNotebook(long style)
 
 wxAuiNotebook::~wxAuiNotebook()
 {
+    while ( GetPageCount() > 0 )
+        DeletePage(0);
+
     m_mgr.UnInit();
 }