From: Drew Fisher Date: Sat, 4 Jul 2009 16:36:11 +0000 (-0500) Subject: Remove DoneStep - pruned in favor of QWizard usage X-Git-Url: http://git.zarvox.org/widgets.js?a=commitdiff_plain;h=9aaaf539fab66b76878a7cb9cfd46000a266390f;p=wp3.git Remove DoneStep - pruned in favor of QWizard usage --- diff --git a/donestep.py b/donestep.py deleted file mode 100644 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("

Thanks for submitting your info to the Whitepages!

") - self.grid = QGridLayout() - self.grid.addWidget(self.title,0,0,1,1) - self.setLayout(self.grid) - self.data = {}