From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QkMQB-0004Fe-RN for garchives@archives.gentoo.org; Fri, 22 Jul 2011 20:34:08 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BC49F21C1A2; Fri, 22 Jul 2011 20:33:59 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 8DF3121C1A2 for ; Fri, 22 Jul 2011 20:33:59 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C303A1B401C for ; Fri, 22 Jul 2011 20:33:58 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id EC87F8003D for ; Fri, 22 Jul 2011 20:33:57 +0000 (UTC) From: "Wiktor W Brodlo" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Wiktor W Brodlo" Message-ID: <4cbfa1065856f0ec2977d7aae5ad1c00410c4a52.wiktor@gentoo> Subject: [gentoo-commits] proj/anaconda:master commit in: / X-VCS-Repository: proj/anaconda X-VCS-Files: gui.py X-VCS-Directories: / X-VCS-Committer: wiktor X-VCS-Committer-Name: Wiktor W Brodlo X-VCS-Revision: 4cbfa1065856f0ec2977d7aae5ad1c00410c4a52 Date: Fri, 22 Jul 2011 20:33:57 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 0c46f3d2b11a5b1a959e9e9c93cf0fe8 commit: 4cbfa1065856f0ec2977d7aae5ad1c00410c4a52 Author: wiktor w brodlo brodlo net> AuthorDate: Fri Jul 22 20:33:42 2011 +0000 Commit: Wiktor W Brodlo brodlo net> CommitDate: Fri Jul 22 20:33:42 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/anaconda.git;= a=3Dcommit;h=3D4cbfa106 gui.py: return loadGlade where it was --- gui.py | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gui.py b/gui.py index 19acd4c..c59d16e 100755 --- a/gui.py +++ b/gui.py @@ -1408,7 +1408,6 @@ class InstallControlWindow: self.currentWindow =3D None self.anaconda =3D anaconda self.handle =3D None - self.loadGlade() =20 def keyRelease (self, window, event): if ((event.keyval =3D=3D gtk.keysyms.KP_Delete @@ -1485,6 +1484,7 @@ class InstallControlWindow: if window_reload: self.window.destroy() =20 + self.loadGlade() self.window =3D self.mainxml.get_widget("mainWindow") =20 self.createWidgets() @@ -1505,7 +1505,7 @@ class InstallControlWindow: self.setup_window(False) gtk.main() =20 - def set_chapter(self, number, title, url): + def set_chapter(number, title, url): self.mainxml.get_widget("chapter_header").set_label(_("Chapter %= i:") % number) self.mainxml.get_widget("chapter_link").set_label(title) self.mainxml.get_widget("chapter_link").set_uri(url)