]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/sizer.h
dirty hack to fix deprecation warning when building wxMotif
[wxWidgets.git] / include / wx / sizer.h
index 9b847413549383441a387ce4f5d3a29787eea8ff..7969475a073caf711c634cb01f17bea354bdcadd 100644 (file)
@@ -477,7 +477,10 @@ public:
     // Recursively call wxWindow::Show () on all sizer items.
     virtual void ShowItems (bool show);
 
-    void Show(bool show) { m_isShown = show; }
+    void Show(bool show)
+    {   m_isShown = show;
+        ShowItems(show);
+    }
     bool IsShown() const { return m_isShown; }
 
 protected: