]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/event.h
fixing #9910
[wxWidgets.git] / include / wx / event.h
index 0f9ee90215d7745f56a74fed20fb28a947452047..684d6724197f83de0f1a6a1c3224c7497d66723b 100644 (file)
@@ -1370,7 +1370,7 @@ public:
     // return true if the window was shown, false if hidden
     bool IsShown() const { return m_show; }
 
-#ifdef WXWIN_COMPATIBILITY_2_8
+#if WXWIN_COMPATIBILITY_2_8
     wxDEPRECATED( bool GetShow() const { return IsShown(); } )
 #endif
 
@@ -1397,7 +1397,7 @@ public:
         : wxEvent(event)
     { m_iconized = event.m_iconized; }
 
-#ifdef WXWIN_COMPATIBILITY_2_8
+#if WXWIN_COMPATIBILITY_2_8
     wxDEPRECATED( bool Iconized() const { return IsIconized(); } )
 #endif
     // return true if the frame was iconized, false if restored
@@ -2455,6 +2455,8 @@ protected:
 
     // Is event handler enabled?
     bool                m_enabled;
+    // Avoid adding events from another thread during dtor
+    bool                m_beingDeleted;
 
 
     // The user data: either an object which will be deleted by the container