X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2ef752932bd40c566f0ea003f78e48a00c8295a9..c82be69b51b8f8aabb5bd667b063dba399c6d894:/wxPython/src/gtk/_core.py diff --git a/wxPython/src/gtk/_core.py b/wxPython/src/gtk/_core.py index 429036355e..9175a2d718 100644 --- a/wxPython/src/gtk/_core.py +++ b/wxPython/src/gtk/_core.py @@ -7601,7 +7601,7 @@ class Window(EvtHandler): layout sizer object is already owned by the window, it will be deleted if the deleteOld parameter is true. Note that this function will also call SetAutoLayout implicitly with a True parameter if the sizer is - non-NoneL and False otherwise. + non-None, and False otherwise. """ return _core_.Window_SetSizer(*args, **kwargs) @@ -9400,7 +9400,7 @@ class Sizer(Object): def Show(*args, **kwargs): """ - Show(self, item, bool show=True, bool recursive=False) -> bool + Show(self, item, bool show=True, bool recursive=false) -> bool Shows or hides an item managed by the sizer. To make a sizer item disappear or reappear, use Show followed by `Layout`. The *item* @@ -9425,7 +9425,7 @@ class Sizer(Object): """ A convenience method for Show(item, False, recursive). """ - return self.Show(item, False, recursive) + return self.Show(item, false, recursive) def ShowItems(*args, **kwargs): """