]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/demo/wxButton.py
reSWIGged
[wxWidgets.git] / wxPython / demo / wxButton.py
index b4ac31d997849485f1d41f13ab44a0819adf9d2e..039ff89e4b3c799b4bff0cdb11aa3034fe2ce6cc 100644 (file)
@@ -15,12 +15,12 @@ class TestPanel(wx.Panel):
         self.log = log
 
         b = wx.Button(self, 10, "Default Button", (20, 20))
-        self.Bind(EVT_BUTTON, self.OnClick, b)
+        self.Bind(wx.EVT_BUTTON, self.OnClick, b)
         b.SetDefault()
         b.SetSize(b.GetBestSize())
 
         b = wx.Button(self, 20, "HELLO AGAIN!", (20, 80), (120, 45))
-        self.Bind(EVT_BUTTON, self.OnClick, b)
+        self.Bind(wx.EVT_BUTTON, self.OnClick, b)
         b.SetToolTipString("This is a Hello button...")
 
         if 0:  # a test case for catching wx.PyAssertionError