small updates

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2000-07-11 04:49:30 +00:00
parent e44fed2cb2
commit 262804532c
8 changed files with 289 additions and 1 deletions

View File

@@ -659,6 +659,9 @@ class wxStyledTextCtrlPtr(wxControlPtr):
def SetKeywords(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextCtrl_SetKeywords,(self,) + _args, _kwargs)
return val
def SetModEventMask(self, *_args, **_kwargs):
val = apply(stc_c.wxStyledTextCtrl_SetModEventMask,(self,) + _args, _kwargs)
return val
def __repr__(self):
return "<C wxStyledTextCtrl instance at %s>" % (self.this,)
class wxStyledTextCtrl(wxStyledTextCtrlPtr):