From 2abd8d78a69cbe726f957de91929feeeac21cfb0 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Fri, 7 May 2004 17:04:54 +0000 Subject: [PATCH] removed a debugging print git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@27139 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/XmlResourceSubclass.py | 1 - 1 file changed, 1 deletion(-) diff --git a/wxPython/demo/XmlResourceSubclass.py b/wxPython/demo/XmlResourceSubclass.py index 6e975e538f..4cda2a451a 100644 --- a/wxPython/demo/XmlResourceSubclass.py +++ b/wxPython/demo/XmlResourceSubclass.py @@ -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)) #----------------------------------------------------------------------