]> git.zarvox.org Git - wp3.git/commitdiff
Remove DoneStep - pruned in favor of QWizard usage
authorDrew Fisher <drew.m.fisher@gmail.com>
Sat, 4 Jul 2009 16:36:11 +0000 (11:36 -0500)
committerDrew Fisher <drew.m.fisher@gmail.com>
Sat, 4 Jul 2009 16:36:11 +0000 (11:36 -0500)
donestep.py [deleted file]

diff --git a/donestep.py b/donestep.py
deleted file mode 100644 (file)
index e52e2de..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-from PyQt4 import QtCore
-from PyQt4.QtGui import *
-
-class DoneStep(QWidget):
-       def __init__(self, parent=None):
-               QWidget.__init__(self,parent)
-               self.title = QLabel("<center><h2>Thanks for submitting your info to the Whitepages!</h2></center>")
-               self.grid = QGridLayout()
-               self.grid.addWidget(self.title,0,0,1,1)
-               self.setLayout(self.grid)
-               self.data = {}