]> git.saurik.com Git - wxWidgets.git/commitdiff
ensure that the MasedEditMixin's version of IsEmpty is the one used.
authorRobin Dunn <robin@alldunn.com>
Thu, 19 Oct 2006 21:38:55 +0000 (21:38 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 19 Oct 2006 21:38:55 +0000 (21:38 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42133 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/wx/lib/masked/combobox.py
wxPython/wx/lib/masked/textctrl.py

index 7c08ed42656d3f10299bc1551592715e9da8e917..c7c97bdc7377020ad102bea5379496c7a08aaca6 100644 (file)
@@ -224,6 +224,10 @@ class BaseMaskedComboBox( wx.ComboBox, MaskedEditMixin ):
         self.SetInsertionPoint(pos)
 
 
+    def IsEmpty(*args, **kw):
+        return MaskedEditMixin.IsEmpty(*args, **kw)
+
+
     def _GetValue(self):
         """
         Allow mixin to get the raw value of the control with this function.
index 7a2fb42a08958caa85b5853c09cc8837e3a7dac1..93c1a1c1019855e0cfee935466ecd68882001702 100644 (file)
@@ -141,6 +141,9 @@ class BaseMaskedTextCtrl( wx.TextCtrl, MaskedEditMixin ):
 ##        wx.TextCtrl.SetInsertionPoint(self, pos)
 
 
+    def IsEmpty(*args, **kw):
+        return MaskedEditMixin.IsEmpty(*args, **kw)
+
     def _GetValue(self):
         """
         Allow mixin to get the raw value of the control with this function.