summaryrefslogtreecommitdiff
path: root/portato/gui/qt/__init__.py
diff options
context:
space:
mode:
authornecoro <>2007-04-16 16:35:39 +0000
committernecoro <>2007-04-16 16:35:39 +0000
commit35d7c73cf74e891b6ead631444e4e470b3a7a941 (patch)
tree39bbab5669a1e2ab239fcd4698c23f9aeaa09e82 /portato/gui/qt/__init__.py
parent19f9e0b5234693cf7e27a24c94f2136cd90be8c7 (diff)
downloadportato-35d7c73cf74e891b6ead631444e4e470b3a7a941.tar.gz
portato-35d7c73cf74e891b6ead631444e4e470b3a7a941.tar.bz2
portato-35d7c73cf74e891b6ead631444e4e470b3a7a941.zip
added preferences for Qt-Frontend
Diffstat (limited to 'portato/gui/qt/__init__.py')
-rw-r--r--portato/gui/qt/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/portato/gui/qt/__init__.py b/portato/gui/qt/__init__.py
index c714757..df49473 100644
--- a/portato/gui/qt/__init__.py
+++ b/portato/gui/qt/__init__.py
@@ -10,8 +10,10 @@
#
# Written by René 'Necoro' Neumann <necoro@necoro.net>
+from PyQt4.Qt import QApplication
from windows import MainWindow
def run():
+ app = QApplication([])
m = MainWindow()
- m.main()
+ app.exec_()