summaryrefslogtreecommitdiffstats
path: root/gui.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-07-15 14:59:03 -0400
committerChris Lumens <clumens@redhat.com>2009-07-29 15:25:32 -0400
commitb61c399f446a7f085a10916781a1de61a363e108 (patch)
tree68268f1171bc32e2158a5128483c90661f1ffe81 /gui.py
parent86a8d4ce4fa20e43afcc3127efc7c7d89541c973 (diff)
downloadanaconda-b61c399f446a7f085a10916781a1de61a363e108.tar.gz
anaconda-b61c399f446a7f085a10916781a1de61a363e108.tar.xz
anaconda-b61c399f446a7f085a10916781a1de61a363e108.zip
Most windows no longer need an anaconda argument, since the intf has that.
Diffstat (limited to 'gui.py')
-rwxr-xr-xgui.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/gui.py b/gui.py
index a4bd75c65..7f560362a 100755
--- a/gui.py
+++ b/gui.py
@@ -998,11 +998,11 @@ class InstallInterface:
def resume(self):
pass
- def enableNetwork(self, anaconda):
- if len(anaconda.id.network.netdevices) == 0:
+ def enableNetwork(self):
+ if len(self.anaconda.id.network.netdevices) == 0:
return False
from netconfig_dialog import NetworkConfigurator
- net = NetworkConfigurator(anaconda.id.network)
+ net = NetworkConfigurator(self.anaconda.id.network)
ret = net.run()
net.destroy()
@@ -1035,21 +1035,21 @@ class InstallInterface:
custom_buttons, custom_icon, run=True, parent=parent).getrc()
return rc
- def createRepoWindow(self, anaconda):
+ def createRepoWindow(self):
from task_gui import RepoCreator
- dialog = RepoCreator(anaconda)
+ dialog = RepoCreator(self.anaconda)
dialog.createDialog()
dialog.run()
- def editRepoWindow(self, anaconda, repoObj):
+ def editRepoWindow(self, repoObj):
from task_gui import RepoEditor
- dialog = RepoEditor(anaconda, repoObj)
+ dialog = RepoEditor(self.anaconda, repoObj)
dialog.createDialog()
dialog.run()
- def methodstrRepoWindow(self, anaconda):
+ def methodstrRepoWindow(self):
from task_gui import RepoMethodstrEditor
- dialog = RepoMethodstrEditor(anaconda)
+ dialog = RepoMethodstrEditor(self.anaconda)
dialog.createDialog()
return dialog.run()
@@ -1096,8 +1096,8 @@ class InstallInterface:
custom_buttons=[_("_Exit installer")]).getrc()
return rc
- def getInstallKey(self, anaconda, key = ""):
- d = InstallKeyWindow(anaconda, key)
+ def getInstallKey(self, key = ""):
+ d = InstallKeyWindow(self.anaconda, key)
rc = d.run()
if rc == gtk.RESPONSE_CANCEL:
ret = None