]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sizer.h
SourceForge patch #654210 to fix naming/numbering shared libs under OS X
[wxWidgets.git] / include / wx / sizer.h
index c3741cfedc2a6c42752fe66c90d4ebfe213bc87c..412f6a2f54e7364eb57d6ed6f115329f9ec0e3e7 100644 (file)
@@ -50,6 +50,10 @@ public:
     
     virtual void DeleteWindows();
 
+    // Enable deleting the SizerItem without destroying the contained sizer.
+    void DetachSizer()
+        { m_sizer = 0; }
+
     virtual wxSize GetSize();
     virtual wxSize CalcMin();
     virtual void SetDimension( wxPoint pos, wxSize size );
@@ -82,8 +86,6 @@ public:
         { m_border = border; }
     void Show ( bool show )
         { m_show = show; }
-    void SetDeleteItem( bool deleteItem = TRUE )
-        { m_deleteItem = deleteItem; }
 
     wxWindow *GetWindow() const
         { return m_window; }
@@ -124,11 +126,6 @@ protected:
     //      is shrinked.  it is safer to preserve initial value.
     float        m_ratio;
 
-    // If TRUE, and the item is a sizer, delete it when the
-    // sizeritem is destroyed.  Not used for any other type
-    // of item right now.
-    bool        m_deleteItem;
-
     wxObject    *m_userData;
 
 private: