diff options
author | Matt Wilson <msw@redhat.com> | 2002-05-06 21:22:09 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2002-05-06 21:22:09 +0000 |
commit | bea3a58a0c1325334861303210ab6da73cd9f4c5 (patch) | |
tree | 1ec4ee9ee6d326a7adc5803adefa230dca6b114a /gui.py | |
parent | f9e8a9721a1fcaec629be5287f102dda2e7200a6 (diff) | |
download | anaconda-bea3a58a0c1325334861303210ab6da73cd9f4c5.tar.gz anaconda-bea3a58a0c1325334861303210ab6da73cd9f4c5.tar.xz anaconda-bea3a58a0c1325334861303210ab6da73cd9f4c5.zip |
don't use depreciated functions
Diffstat (limited to 'gui.py')
-rwxr-xr-x | gui.py | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -142,7 +142,7 @@ class WrappingLabel(gtk.Label): widgetExpander(self) def addFrame(dialog): - contents = dialog.children()[0] + contents = dialog.get_children()[0] dialog.remove(contents) frame = gtk.Frame() frame.set_shadow_type(gtk.SHADOW_OUT) @@ -607,7 +607,7 @@ class InstallControlWindow: self.refreshHelp() def destroyCurrentWindow(self): - children = self.installFrame.children () + children = self.installFrame.get_children () if children: child = children[0] self.installFrame.remove (child) @@ -627,7 +627,7 @@ class InstallControlWindow: nextButton.connect("clicked", self.nextClicked) nextButton.show_all() - children = self.buttonBox.children () + children = self.buttonBox.get_children () if not prevButton in children: self.buttonBox.remove (children[0]) |