1
0

move methods calling installwizard to main gui class

This commit is contained in:
ThomasV
2015-09-02 12:05:33 +02:00
parent 4e458b5639
commit bdb4d3ecb8
4 changed files with 108 additions and 107 deletions

View File

@@ -65,9 +65,9 @@ class CosignWidget(QWidget):
class InstallWizard(QDialog):
def __init__(self, config, network, storage, parent):
QDialog.__init__(self, parent)
self.app = parent.app
def __init__(self, config, network, storage, app):
QDialog.__init__(self)
self.app = app
self.config = config
self.network = network
self.storage = storage