X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9283228f861b3842f06e2228c4f7b93a48de064f..8c125d136d0e87702fe8964ff3eeb586b26ec821:/wxPython/src/_sizers.i?ds=sidebyside diff --git a/wxPython/src/_sizers.i b/wxPython/src/_sizers.i index 157024fb7d..017d394fa5 100644 --- a/wxPython/src/_sizers.i +++ b/wxPython/src/_sizers.i @@ -841,7 +841,7 @@ as well.", ""); // wxList& GetChildren(); %extend { DocAStr(GetChildren, - "GetChildren(sefl) -> list", + "GetChildren(self) -> list", "Returns a list of all the `wx.SizerItem` objects managed by the sizer.", ""); PyObject* GetChildren() { wxSizerItemList& list = self->GetChildren(); @@ -1289,6 +1289,10 @@ method in the base class.", ""); "This funciton needs to be called after all the buttons have been added to the sizer. It will reorder them and position them in a platform specifc manner.", ""); + + void SetAffirmativeButton( wxButton *button ); + void SetNegativeButton( wxButton *button ); + void SetCancelButton( wxButton *button ); wxButton* GetAffirmativeButton() const; wxButton* GetApplyButton() const;