X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0adbc1660ee4c4526a9011cb9347cb668c41ec3e..3b50432abf11a0dbdab6b8d4136c3956ce4def1f:/wxPython/src/msw/controls.py diff --git a/wxPython/src/msw/controls.py b/wxPython/src/msw/controls.py index 78d08fa3d5..b7bdb4c1b2 100644 --- a/wxPython/src/msw/controls.py +++ b/wxPython/src/msw/controls.py @@ -745,6 +745,12 @@ class wxRadioBoxPtr(wxControlPtr): def SetString(self, *_args, **_kwargs): val = apply(controlsc.wxRadioBox_SetString,(self,) + _args, _kwargs) return val + def GetColumnCount(self, *_args, **_kwargs): + val = apply(controlsc.wxRadioBox_GetColumnCount,(self,) + _args, _kwargs) + return val + def GetRowCount(self, *_args, **_kwargs): + val = apply(controlsc.wxRadioBox_GetRowCount,(self,) + _args, _kwargs) + return val def GetSelection(self, *_args, **_kwargs): val = apply(controlsc.wxRadioBox_GetSelection,(self,) + _args, _kwargs) return val @@ -754,12 +760,6 @@ class wxRadioBoxPtr(wxControlPtr): def GetCount(self, *_args, **_kwargs): val = apply(controlsc.wxRadioBox_GetCount,(self,) + _args, _kwargs) return val - def GetColumnCount(self, *_args, **_kwargs): - val = apply(controlsc.wxRadioBox_GetColumnCount,(self,) + _args, _kwargs) - return val - def GetRowCount(self, *_args, **_kwargs): - val = apply(controlsc.wxRadioBox_GetRowCount,(self,) + _args, _kwargs) - return val def SetSelection(self, *_args, **_kwargs): val = apply(controlsc.wxRadioBox_SetSelection,(self,) + _args, _kwargs) return val