X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a541c325865cd11d1ba8ef25333b8650b2823c8a..9f4de6b2cf06f53a98b28f53640f3b9ec8cf4182:/wxPython/demo/wxButton.py?ds=sidebyside diff --git a/wxPython/demo/wxButton.py b/wxPython/demo/wxButton.py index 2e9664e70a..2c763d7f70 100644 --- a/wxPython/demo/wxButton.py +++ b/wxPython/demo/wxButton.py @@ -29,10 +29,6 @@ class TestPanel(wxPanel): wxSize(bmp.GetWidth()+10, bmp.GetHeight()+10)) EVT_BUTTON(self, 30, self.OnClick) - if wxUSE_UNICODE: - label = unichr(21514) + unichr(26984) + unichr(8307) + unichr(29545) - wxButton(self, -1, label+" (I have no idea what that says...)", (20, 150)) - def OnClick(self, event): self.log.WriteText("Click! (%d)\n" % event.GetId())