mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-05 03:20:08 +01:00
11 lines
268 B
Python
11 lines
268 B
Python
|
|
class MyClass(public BaseClass): # something inheriting from wx.EvtHandler
|
|
|
|
...
|
|
def TryAfter(self, event):
|
|
if (BaseClass.TryAfter(self, event))
|
|
return True
|
|
|
|
return self.MyPostProcess(event)
|
|
|