X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..429ef4bceaceb7b049396f795178d7072f027f62:/wxPython/demo/PythonEvents.py?ds=sidebyside

diff --git a/wxPython/demo/PythonEvents.py b/wxPython/demo/PythonEvents.py
index 5a9655fedc..98301706ff 100644
--- a/wxPython/demo/PythonEvents.py
+++ b/wxPython/demo/PythonEvents.py
@@ -4,7 +4,7 @@ import sys
 
 #----------------------------------------------------------------------
 
-myEVT_BUTTON_CLICKPOS = 5015
+myEVT_BUTTON_CLICKPOS = wxNewEventType()
 
 def EVT_BUTTON_CLICKPOS(win, id, func):
     win.Connect(id, -1, myEVT_BUTTON_CLICKPOS, func)
@@ -83,3 +83,10 @@ This demo is a contrived example of defining an event class in wxPython and send
 
 
 
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+