X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a57d56d66294799d6d36e64fa7aed6ff42a4d1e9..742fc581e46beca2328551cdaec38c3dfca50cb1:/wxPython/src/gtk/controls.py?ds=sidebyside diff --git a/wxPython/src/gtk/controls.py b/wxPython/src/gtk/controls.py index 34eefa73f7..6992e70d94 100644 --- a/wxPython/src/gtk/controls.py +++ b/wxPython/src/gtk/controls.py @@ -629,6 +629,9 @@ class wxTextCtrlPtr(wxControlPtr): def GetSelection(self, *_args, **_kwargs): val = apply(controlsc.wxTextCtrl_GetSelection,(self,) + _args, _kwargs) return val + def GetStringSelection(self, *_args, **_kwargs): + val = apply(controlsc.wxTextCtrl_GetStringSelection,(self,) + _args, _kwargs) + return val def Clear(self, *_args, **_kwargs): val = apply(controlsc.wxTextCtrl_Clear,(self,) + _args, _kwargs) return val