]> git.saurik.com Git - wxWidgets.git/commitdiff
Don't raise NotImplementedError from GetMark, just silently return
authorRobin Dunn <robin@alldunn.com>
Sat, 21 Oct 2006 01:23:52 +0000 (01:23 +0000)
committerRobin Dunn <robin@alldunn.com>
Sat, 21 Oct 2006 01:23:52 +0000 (01:23 +0000)
(0,0) for now

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@42189 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/src/_combobox.i

index f5d68f6982f4bc92d40ecacf25989e6dae853616..d593ea6f120b25800693503956817abbe5b6c31e 100644 (file)
@@ -167,7 +167,7 @@ the combobox text field.", "",
 #else
     %pythoncode {
         def GetMark(self):
-            raise NotImplementedError
+            return (0,0)
     }
 #endif