diff options
author | kali <kali@leap.se> | 2012-11-06 16:26:10 +0900 |
---|---|---|
committer | kali <kali@leap.se> | 2012-11-06 16:26:10 +0900 |
commit | ad16a72f60ecc84524c22e8912df4eb8a48a2a42 (patch) | |
tree | 903f4fcf6fb10edcc61309fcb9b47ccbb7d70129 /src/leap/baseapp/mainwindow.py | |
parent | c387a52f841e8933ed7282d198ed1ece863979fc (diff) |
split wizard into separate files
so we don't go nuts yet.
Diffstat (limited to 'src/leap/baseapp/mainwindow.py')
-rw-r--r-- | src/leap/baseapp/mainwindow.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/leap/baseapp/mainwindow.py b/src/leap/baseapp/mainwindow.py index 8e12b5f6..8188f819 100644 --- a/src/leap/baseapp/mainwindow.py +++ b/src/leap/baseapp/mainwindow.py @@ -68,7 +68,7 @@ class LeapWindow(QtGui.QMainWindow, # XXX check for wizard self.wizard_done = settings.value("FirstRunWizardDone") - self.initchecks = InitChecksThread(self.run_eip_checks) + self.initchecks = FunThread(self.run_eip_checks) # bind signals self.initchecks.finished.connect( @@ -148,6 +148,8 @@ class LeapWindow(QtGui.QMainWindow, class FunThread(QtCore.QThread): + # XXX move to gui/threads + # for code consistence def __init__(self, fun, parent=None): QtCore.QThread.__init__(self, parent) |