]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/window.cpp
Added stub for the new pure virtual DoInsert method
[wxWidgets.git] / src / mac / carbon / window.cpp
index 2d30db0296fa3b2b464964b3a3be20d4784b23a5..d68b00c5bdbd389c5186f040a82814ae7de8120d 100644 (file)
@@ -104,6 +104,7 @@ void wxWindowMac::Init()
     // generic
     InitBase();
 
+    m_isBeingDeleted = FALSE;
     m_backgroundTransparent = FALSE;
 
     // as all windows are created with WS_VISIBLE style...
@@ -139,6 +140,8 @@ wxWindowMac::~wxWindowMac()
         }
     }
 
+    m_isBeingDeleted = TRUE;
+    
 #ifndef __WXUNIVERSAL__
     // VS: make sure there's no wxFrame with last focus set to us:
     for ( wxWindow *win = GetParent(); win; win = win->GetParent() )