diff --git a/wxPython/src/_menu.i b/wxPython/src/_menu.i index 9e9d7e7f4b..e756e6fa9f 100644 --- a/wxPython/src/_menu.i +++ b/wxPython/src/_menu.i @@ -279,7 +279,8 @@ public: void Check(int id, bool check); bool IsChecked(int id) const; bool IsEnabled(int id) const; - + // TODO: bool IsEnabled() const; + void SetLabel(int id, const wxString &label); wxString GetLabel(int id) const; diff --git a/wxPython/src/_sizers.i b/wxPython/src/_sizers.i index 017d394fa5..e34ed95a19 100644 --- a/wxPython/src/_sizers.i +++ b/wxPython/src/_sizers.i @@ -1043,10 +1043,12 @@ public: "Constructor. It takes an associated static box and the orientation *orient* as parameters - orient can be either of ``wx.VERTICAL`` or ``wx.HORIZONTAL``.", ""); + + // TODO: wxStaticBoxSizer(int orient, wxWindow *win, const wxString& label = wxEmptyString); - DocDeclStr( - wxStaticBox *, GetStaticBox(), - "Returns the static box associated with this sizer.", ""); + DocDeclStr( + wxStaticBox *, GetStaticBox(), + "Returns the static box associated with this sizer.", ""); };