X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8b5895b0fe39f806ee35ff643b3c9c2904a8ef4f..cfd1ac216d14febc1278a48d116b1218efe0316b:/wxPython/src/_sizers.i?ds=sidebyside diff --git a/wxPython/src/_sizers.i b/wxPython/src/_sizers.i index bfaa583272..1846e410d0 100644 --- a/wxPython/src/_sizers.i +++ b/wxPython/src/_sizers.i @@ -635,7 +635,7 @@ was found and detached.", ""); "GetItem(self, item) -> wx.SizerItem", "Returns the `wx.SizerItem` which holds the *item* given. The *item* parameter can be either a window, a sizer, or the zero-based index of -the item to be detached.", ""); +the item to be found.", ""); wxSizerItem* GetItem(PyObject* item) { wxPyBlock_t blocked = wxPyBeginBlockThreads(); wxPySizerItemInfo info = wxPySizerItemTypeHelper(item, false, true); @@ -932,7 +932,7 @@ the item.", ""); %pythoncode { def Hide(self, item, recursive=False): """ - A convenience method for `Show`(item, False, recursive). + A convenience method for `Show` (item, False, recursive). """ return self.Show(item, False, recursive) }