diff options
author | wiktor w brodlo <wiktor@brodlo.net> | 2011-08-01 01:58:57 +0000 |
---|---|---|
committer | wiktor w brodlo <wiktor@brodlo.net> | 2011-08-01 01:58:57 +0000 |
commit | f09ace692f8c0cf87a757ee5ee3d2090c2bc949a (patch) | |
tree | 024c36a919d8b7afab3eab368178322849a8de45 | |
parent | iw/mirrorselect*_gui.py: pass around self.xml (diff) | |
download | anaconda-f09ace692f8c0cf87a757ee5ee3d2090c2bc949a.tar.gz anaconda-f09ace692f8c0cf87a757ee5ee3d2090c2bc949a.tar.bz2 anaconda-f09ace692f8c0cf87a757ee5ee3d2090c2bc949a.zip |
iw/mirrorselect_gui.py: use the local xml instance
-rw-r--r-- | iw/mirrorselect_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/mirrorselect_gui.py b/iw/mirrorselect_gui.py index 417efb2..062766f 100644 --- a/iw/mirrorselect_gui.py +++ b/iw/mirrorselect_gui.py @@ -100,9 +100,9 @@ class MirrorselectWindow(InstallWindow): name_column.add_attribute(text_cell, "text", 1) ipv4_column.add_attribute(text_cell, "text", 2) ipv6_column.add_attribute(text_cell, "text", 3) - xml.treeview.set_search_column(1) + treeview.set_search_column(1) - self.xml.get_widget("mirrors_viewport").add(treeview) + xml.get_widget("mirrors_viewport").add(treeview) def addMirrorRow(self, ts, country_ts, region, country, mirror, data): |