diff --git a/src/message_window.py b/src/message_window.py index 6f3cd117e..c8bae9873 100644 --- a/src/message_window.py +++ b/src/message_window.py @@ -33,16 +33,6 @@ APP = i18n.APP GTKGUI_GLADE = 'gtkgui.glade' #################### -# FIXME: Debugging #1389 -def print_children(widget): - print "widget: %s" % widget.get_name() - if isinstance(widget, gtk.Container): - for c in widget.get_children(): - name = c.get_name() - sz = c.size_request() - print "child: %s, %s" % (name, str(sz)) - print_children(c) - class MessageWindow: '''Class for windows which contain message like things; chats, groupchats, etc.''' @@ -64,9 +54,6 @@ class MessageWindow: self.xml.signal_autoconnect(self) self.window = self.xml.get_widget(self.widget_name) - # FIXME: Debugging #1389 - print_children(self.window) - # gtk+ doesn't make use of the motion notify on gtkwindow by default # so this line adds that self.window.add_events(gtk.gdk.POINTER_MOTION_MASK)