summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-05-06 21:22:09 +0000
committerMatt Wilson <msw@redhat.com>2002-05-06 21:22:09 +0000
commitbea3a58a0c1325334861303210ab6da73cd9f4c5 (patch)
tree1ec4ee9ee6d326a7adc5803adefa230dca6b114a /gui.py
parentf9e8a9721a1fcaec629be5287f102dda2e7200a6 (diff)
downloadanaconda-bea3a58a0c1325334861303210ab6da73cd9f4c5.tar.gz
anaconda-bea3a58a0c1325334861303210ab6da73cd9f4c5.tar.xz
anaconda-bea3a58a0c1325334861303210ab6da73cd9f4c5.zip
don't use depreciated functions
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gui.py b/gui.py
index a9c3e3e64..9c1906baf 100755
--- a/gui.py
+++ b/gui.py
@@ -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])