]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/PythonEvents.py
reSWIGged
[wxWidgets.git] / wxPython / demo / PythonEvents.py
index 5a9655fedc51b1c401bcd4c3b69c2831466d7a3b..911f04b4aacb63493c92f8cd272758d0d17f9b6a 100644 (file)
@@ -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)
@@ -77,9 +77,16 @@ def runTest(frame, nb, log):
 
 
 overview = """\
-This demo is a contrived example of defining an event class in wxPython and sending it up the containment heirachy for processing.
+This demo is a contrived example of defining an event class in wxPython and sending it up the containment hierarchy for processing.
 """
 
 
 
 
+
+
+if __name__ == '__main__':
+    import sys,os
+    import run
+    run.main(['', os.path.basename(sys.argv[0])])
+