diff options
author | necoro <> | 2007-04-16 16:35:39 +0000 |
---|---|---|
committer | necoro <> | 2007-04-16 16:35:39 +0000 |
commit | 35d7c73cf74e891b6ead631444e4e470b3a7a941 (patch) | |
tree | 39bbab5669a1e2ab239fcd4698c23f9aeaa09e82 /portato/gui/qt/__init__.py | |
parent | 19f9e0b5234693cf7e27a24c94f2136cd90be8c7 (diff) | |
download | portato-35d7c73cf74e891b6ead631444e4e470b3a7a941.tar.gz portato-35d7c73cf74e891b6ead631444e4e470b3a7a941.tar.bz2 portato-35d7c73cf74e891b6ead631444e4e470b3a7a941.zip |
added preferences for Qt-Frontend
Diffstat (limited to '')
-rw-r--r-- | portato/gui/qt/__init__.py | 4 |
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_() |