projects
/
wp3.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
84c947b
)
Remove DoneStep - pruned in favor of QWizard usage
author
Drew Fisher
<drew.m.fisher@gmail.com>
Sat, 4 Jul 2009 16:36:11 +0000
(11:36 -0500)
committer
Drew Fisher
<drew.m.fisher@gmail.com>
Sat, 4 Jul 2009 16:36:11 +0000
(11:36 -0500)
donestep.py
[deleted file]
patch
|
blob
|
history
diff --git
a/donestep.py
b/donestep.py
deleted file mode 100644
(file)
index
e52e2de
..0000000
--- a/
donestep.py
+++ /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 = {}