summaryrefslogtreecommitdiffstats
path: root/iw/congrats_gui.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2002-06-03 20:58:44 +0000
committerJeremy Katz <katzj@redhat.com>2002-06-03 20:58:44 +0000
commite5576141cabe3ece02b6ca42ef1049b8929a7d8f (patch)
tree7007ab5f59723904d3daf6191196223911e98f25 /iw/congrats_gui.py
parent8c9df7368c5ad1c30da521bd6464645ada6f7dd8 (diff)
downloadanaconda-e5576141cabe3ece02b6ca42ef1049b8929a7d8f.tar.gz
anaconda-e5576141cabe3ece02b6ca42ef1049b8929a7d8f.tar.xz
anaconda-e5576141cabe3ece02b6ca42ef1049b8929a7d8f.zip
kill more reconfig cruft
Diffstat (limited to 'iw/congrats_gui.py')
-rw-r--r--iw/congrats_gui.py41
1 files changed, 0 insertions, 41 deletions
diff --git a/iw/congrats_gui.py b/iw/congrats_gui.py
index 91c9638db..110914c85 100644
--- a/iw/congrats_gui.py
+++ b/iw/congrats_gui.py
@@ -75,44 +75,3 @@ class CongratulationWindow (InstallWindow):
hbox.pack_start (box)
return hbox
-
-class ReconfigCongratulationWindow (InstallWindow):
-
- def __init__ (self, ics):
- InstallWindow.__init__ (self, ics)
-
- ics.setTitle (_("Congratulations"))
- ics.setPrevEnabled (0)
- ics.setNextButton (gtk.STOCK_QUIT, _("Exit"))
- ics.setNextEnabled (1)
- ics.setGrabNext (1)
-
- # ReconfigCongratulationWindow tag=NA
- def getScreen (self):
- self.ics.setHelpEnabled (0)
-
- hbox = gtk.HBox (gtk.TRUE, 5)
-
- pix = self.ics.readPixmap ("done.png")
- if pix:
- a = gtk.Alignment ()
- a.add (pix)
- a.set (0.5, 0.5, 1.0, 1.0)
- hbox.pack_start (a, gtk.FALSE)
-
- label = gtk.Label(_("Congratulations, configuration is complete.\n\n"
- "For information on errata (updates and bug fixes), visit "
- "http://www.redhat.com/errata.\n\n"
- "Information on using and configuring your "
- "system is available in the %s manuals "
- "at http://www.redhat.com/docs.") % (productName,))
-
- label.set_line_wrap (gtk.TRUE)
- label.set_alignment (0.0, 0.5)
-
- box = gtk.VBox (gtk.FALSE, 10)
- box.pack_start (label, gtk.TRUE, gtk.TRUE, 0)
-
- hbox.pack_start (box)
- return hbox
-