intctrl Phoenix Fixes

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@74214 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-06-13 07:17:29 +00:00
parent d3bac7f83e
commit 38e529ac51

View File

@@ -80,13 +80,13 @@ class IntUpdatedEvent(wx.PyCommandEvent):
#----------------------------------------------------------------------------
class IntValidator( wx.PyValidator ):
class IntValidator(wx.Validator):
"""
Validator class used with IntCtrl; handles all validation of input
prior to changing the value of the underlying wx.TextCtrl.
"""
def __init__(self):
wx.PyValidator.__init__(self)
wx.Validator.__init__(self)
self.Bind(wx.EVT_CHAR, self.OnChar)
def Clone (self):
@@ -328,7 +328,7 @@ class IntValidator( wx.PyValidator ):
elif not internally_set:
event.Skip() # allow base wxTextCtrl to finish processing
elif not wx.Validator_IsSilent():
elif not wx.Validator.IsSilent():
wx.Bell()