[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[PATCH 05/12] Adapt mainExceptionWindow and saveExceptionWindow to call meh.
- From: Chris Lumens <clumens redhat com>
- To: anaconda-devel-list redhat com
- Cc:
- Subject: [PATCH 05/12] Adapt mainExceptionWindow and saveExceptionWindow to call meh.
- Date: Tue, 28 Jul 2009 16:27:01 -0400
---
gui.py | 8 ++++++--
1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/gui.py b/gui.py
index 03c5af4..0e4a455 100755
--- a/gui.py
+++ b/gui.py
@@ -1073,12 +1073,16 @@ class InstallInterface:
return rc
def mainExceptionWindow(self, shortText, longTextFile):
+ from meh.ui.gui import MainExceptionWindow
log.critical(shortText)
win = MainExceptionWindow (shortText, longTextFile)
+ addFrame(win.dialog)
return win
- def saveExceptionWindow(self, anaconda, longTextFile):
- win = SaveExceptionWindow (anaconda, longTextFile)
+ def saveExceptionWindow(self, longTextFile):
+ from meh.ui.gui import SaveExceptionWindow
+ win = SaveExceptionWindow (self.anaconda, longTextFile)
+ addFrame(win.dialog)
return win
def getInstallKey(self, anaconda, key = ""):
--
1.6.1.3
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]