Use correct name for event type

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25388 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn 2004-01-26 22:43:39 +00:00
parent 31caa11b19
commit ae18f6104c

View File

@ -5994,7 +5994,7 @@ class MaskedTextCtrl( wx.TextCtrl, MaskedEditMixin ):
## events, we have to do it ourselves when we auto-complete.
class MaskedComboBoxSelectEvent(wx.PyCommandEvent):
def __init__(self, id, selection = 0, object=None):
wx.PyCommandEvent.__init__(self, wx.EVT_COMMAND_COMBOBOX_SELECTED, id)
wx.PyCommandEvent.__init__(self, wx.wxEVT_COMMAND_COMBOBOX_SELECTED, id)
self.__selection = selection
self.SetEventObject(object)