mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-31 16:10:07 +01:00
11 lines
264 B
Python
11 lines
264 B
Python
|
|
class MyClass(BaseClass): # something inheriting from wx.EvtHandler
|
|
|
|
...
|
|
def TryBefore(self, event):
|
|
if (self.MyPreProcess(event)):
|
|
return True
|
|
|
|
return BaseClass.TryBefore(self, event)
|
|
|