Gentoo Archives: gentoo-commits

From: Wiktor W Brodlo <wiktor@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/anaconda:master commit in: iw/
Date: Wed, 03 Aug 2011 08:40:42
Message-Id: ea614c12d4c89807df698455900608b0b546dfca.wiktor@gentoo
1 commit: ea614c12d4c89807df698455900608b0b546dfca
2 Author: wiktor w brodlo <wiktor <AT> brodlo <DOT> net>
3 AuthorDate: Wed Aug 3 08:39:53 2011 +0000
4 Commit: Wiktor W Brodlo <wiktor <AT> brodlo <DOT> net>
5 CommitDate: Wed Aug 3 08:39:53 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/anaconda.git;a=commit;h=ea614c12
7
8 iw/timezone_gui.py: fix the way the UI is loaded
9
10 ---
11 iw/timezone_gui.py | 3 +--
12 1 files changed, 1 insertions(+), 2 deletions(-)
13
14 diff --git a/iw/timezone_gui.py b/iw/timezone_gui.py
15 index cf91ce6..0b02096 100644
16 --- a/iw/timezone_gui.py
17 +++ b/iw/timezone_gui.py
18 @@ -55,8 +55,7 @@ class TimezoneWindow(InstallWindow):
19 self.zonetab = zonetab.ZoneTab()
20
21 # Pull in a bunch of widgets.
22 - self.xml = gtk.glade.XML("timezone.glade", domain="system-config-date")
23 - self.vbox = self.xml.get_widget("tz_vbox")
24 + (self.xml, self.vbox) = gui.getGladeWidget("timezone.glade", "tz_vbox")
25 self.utcCheckbox = self.xml.get_widget("utc_check")
26
27 ics.setTitle(_("Time Zone Selection"))