summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xgui.py9
-rw-r--r--text.py13
2 files changed, 0 insertions, 22 deletions
diff --git a/gui.py b/gui.py
index a8bd54a35..2eb3746bb 100755
--- a/gui.py
+++ b/gui.py
@@ -1124,15 +1124,6 @@ class InstallInterface:
custom_buttons = [_("_Exit installer")],
custom_icon = "error")
- def dumpWindow(self):
- window = MessageWindow("Save Crash Dump",
- _("Please insert a floppy now. All contents "
- "of the disk will be erased, so please "
- "choose your diskette carefully."),
- "okcancel")
- rc = window.getrc()
- return not rc
-
def getBootdisk (self):
return None
diff --git a/text.py b/text.py
index b42517eef..f280cc163 100644
--- a/text.py
+++ b/text.py
@@ -460,19 +460,6 @@ class InstallInterface:
custom_buttons = [("_Reboot")],
custom_icon="error")
-
-
- def dumpWindow(self):
- rc = ButtonChoiceWindow(self.screen, _("Save Crash Dump"),
- _("Please insert a floppy now. All contents of the disk "
- "will be erased, so please choose your diskette carefully."),
- [TEXT_OK_BUTTON, _("Cancel")])
-
- if rc == string.lower(_("Cancel")):
- return 1
-
- return 0
-
def mainExceptionWindow(self, shortText, longTextFile):
log.critical(shortText)
exnWin = MainExceptionWindow(shortText, longTextFile, self.screen)