]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/src/_sizers.i
the #ifdef around BROWSEINFO.lpszTitle assignment is bogus; should be c_str() everywhere
[wxWidgets.git] / wxPython / src / _sizers.i
index f0eac7a127d3e57d4c302d37f316834a384ca9e1..49bc1ec8d5f99f4e98fa934c62f4f3661dffbef9 100644 (file)
@@ -836,6 +836,8 @@ subsizer.  Returns True if the item was found.", "");
                 return self->Show(info.sizer, show, recursive);
             else if ( info.gotPos )
                 return self->Show(info.pos, show);
+            else
+                return false;
         }
        
         DocAStr(IsShown,
@@ -860,7 +862,7 @@ the item.", "");
     }
 
     %pythoncode {
-    def Hide(self, item, recursive=false):
+    def Hide(self, item, recursive=False):
         """
         A convenience method for Show(item, False, recursive).
         """
@@ -870,7 +872,7 @@ the item.", "");
     
     DocDeclStr(
         void , ShowItems(bool show),
-        "Recursively call `wx.Window.Show` on all sizer items.", "");
+        "Recursively call `wx.SizerItem.Show` on all sizer items.", "");
     
 };