From: Robin Dunn Date: Wed, 15 May 2002 19:45:03 +0000 (+0000) Subject: demo update X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/23c0ea8c42849743202e97801be76566a09fef40 demo update git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15574 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/simple.py b/wxPython/demo/simple.py index 3b4cdfca35..beed3ee0cd 100644 --- a/wxPython/demo/simple.py +++ b/wxPython/demo/simple.py @@ -23,11 +23,7 @@ class MyFrame(wxFrame): self.SetMenuBar(menuBar) panel = wxPanel(self, -1) - if wxPlatform == "__WXMAC__": - text = wxStaticText(panel, -1, - "Hello World!\nWhere is my menu?") - else: - text = wxStaticText(panel, -1, "Hello World!") + text = wxStaticText(panel, -1, "Hello World!") text.SetFont(wxFont(12, wxSWISS, wxNORMAL, wxBOLD)) text.SetSize(text.GetBestSize()) btn = wxButton(panel, -1, "Close")