From: Robin Dunn Date: Fri, 3 Sep 2004 19:14:09 +0000 (+0000) Subject: fixed copy/paste error X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9a8a6d250fffa398b692cd8e0cd98741fa3afd4f fixed copy/paste error git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29017 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/demo/FloatCanvas.py b/wxPython/demo/FloatCanvas.py index 73952c0cc9..77fbcb8c82 100644 --- a/wxPython/demo/FloatCanvas.py +++ b/wxPython/demo/FloatCanvas.py @@ -58,7 +58,7 @@ class TestPanel(wx.Panel): self.log = log wx.Panel.__init__(self, parent, -1) - b = wx.Button(self, -1, "Show the FloatBar sample", (50,50)) + b = wx.Button(self, -1, "Show the FloatCanvas sample", (50,50)) self.Bind(wx.EVT_BUTTON, self.OnButton, b)