projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added wxTextCtrl.GetStringSelection
[wxWidgets.git]
/
wxPython
/
src
/
msw
/
controls.py
diff --git
a/wxPython/src/msw/controls.py
b/wxPython/src/msw/controls.py
index a5ba51fdd9d67e43503fe7ae76d2431d3cb43bf4..563bd1a11688200cb52c508c5526763908ed9625 100644
(file)
--- a/
wxPython/src/msw/controls.py
+++ b/
wxPython/src/msw/controls.py
@@
-635,6
+635,9
@@
class wxTextCtrlPtr(wxControlPtr):
def GetSelection(self, *_args, **_kwargs):
val = apply(controlsc.wxTextCtrl_GetSelection,(self,) + _args, _kwargs)
return val
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
def Clear(self, *_args, **_kwargs):
val = apply(controlsc.wxTextCtrl_Clear,(self,) + _args, _kwargs)
return val