Remove a couple of stale FIXMEs

This commit is contained in:
Chris Jones 2009-12-11 14:25:38 +00:00
parent 7d897eaef7
commit 88cd14ac64
2 changed files with 0 additions and 2 deletions

View File

@ -67,7 +67,6 @@ class Container(object):
"""De-register the signals for a child"""
if self.cnxids.has_key(widget):
for cnxid in self.cnxids[widget]:
# FIXME: Look up the IDs to print a useful debugging message
dbg('Container::disconnect_child: removing handler on %s' %
widget.__class__.__name__)
widget.disconnect(cnxid)

View File

@ -230,7 +230,6 @@ class Window(Container, gtk.Window):
maker = Factory()
self.remove(widget)
# FIXME: we should be creating proper containers, not these gtk widgets
if vertical:
container = maker.make('VPaned')
else: