]> git.saurik.com Git - wxWidgets.git/commitdiff
RemoveChild added for correct disposal of scrollbar
authorStefan Csomor <csomor@advancedconcepts.ch>
Thu, 11 Apr 2002 15:31:58 +0000 (15:31 +0000)
committerStefan Csomor <csomor@advancedconcepts.ch>
Thu, 11 Apr 2002 15:31:58 +0000 (15:31 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15094 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/window.cpp
src/mac/window.cpp

index ce34604fa12cccc1130fcf9d2c44e5195ad81ef7..fd36642550f9751c6951f1ce355407c378a3077a 100644 (file)
@@ -1072,6 +1072,16 @@ void wxWindowMac::MacPaintBorders( int left , int top )
     }
 }
 
+void wxWindowMac::RemoveChild( wxWindowBase *child )
+{
+    if ( child == m_hScrollBar )
+        m_hScrollBar = NULL ;
+    if ( child == m_vScrollBar )
+        m_vScrollBar = NULL ;
+      
+    wxWindowBase::RemoveChild( child ) ;
+}
+
 // New function that will replace some of the above.
 void wxWindowMac::SetScrollbar(int orient, int pos, int thumbVisible,
     int range, bool refresh)
index ce34604fa12cccc1130fcf9d2c44e5195ad81ef7..fd36642550f9751c6951f1ce355407c378a3077a 100644 (file)
@@ -1072,6 +1072,16 @@ void wxWindowMac::MacPaintBorders( int left , int top )
     }
 }
 
+void wxWindowMac::RemoveChild( wxWindowBase *child )
+{
+    if ( child == m_hScrollBar )
+        m_hScrollBar = NULL ;
+    if ( child == m_vScrollBar )
+        m_vScrollBar = NULL ;
+      
+    wxWindowBase::RemoveChild( child ) ;
+}
+
 // New function that will replace some of the above.
 void wxWindowMac::SetScrollbar(int orient, int pos, int thumbVisible,
     int range, bool refresh)