]> git.saurik.com Git - wxWidgets.git/commitdiff
removed a debugging print
authorRobin Dunn <robin@alldunn.com>
Fri, 7 May 2004 17:04:54 +0000 (17:04 +0000)
committerRobin Dunn <robin@alldunn.com>
Fri, 7 May 2004 17:04:54 +0000 (17:04 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

wxPython/demo/XmlResourceSubclass.py

index 6e975e538f2914c873e194825039d5f79bfa8fe2..4cda2a451a84813fbe91ff5abe124f7c7817bf28 100644 (file)
@@ -53,7 +53,6 @@ class MyCustomPanel(wx.Panel):
         if hasattr(self, 't'):
             sz = self.GetSize()
             w, h = self.t.GetTextExtent(self.t.GetLabel())
-            print w, h
             self.t.SetPosition(((sz.width-w)/2, (sz.height-h)/2))
     
 #----------------------------------------------------------------------