compilation fix for recent commit
[wxWidgets.git] / wxPython / demo / simple.py
index 3e745d419e73deea58aa78f2c9edafdc1ae8e317..2f1e3b9b41862f18f1c2899e5054a1f297ef500c 100644 (file)
@@ -19,7 +19,10 @@ class MyFrame(wxFrame):
         self.SetMenuBar(menuBar)
 
         panel = wxPanel(self, -1)
-        text = wxStaticText(panel, -1, "Hello World!\nWhere is my menu?")
+        if wxPlatform == "__WXMAC__":
+            text = wxStaticText(panel, -1, "Hello World!\nWhere is my menu?")
+        else:
+            text = wxStaticText(panel, -1, "Hello World!")
         text.SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD))
         text.SetSize(text.GetBestSize())
         btn = wxButton(panel, -1, "Close")
@@ -36,6 +39,7 @@ class MyFrame(wxFrame):
 
 
     def OnButton(self, evt):
+        print "OnButton"
         self.Close()
 
 app = wxPySimpleApp()