mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
9 lines
No EOL
171 B
Python
Executable file
9 lines
No EOL
171 B
Python
Executable file
#!/usr/bin/python
|
|
|
|
import sys, KtCore, KtGui
|
|
|
|
a = KtGui.QApplication(0, None)
|
|
w = KtGui.QMainWindow()
|
|
w.setWindowTitle(KtCore.QString('Test'))
|
|
w.show()
|
|
sys.exit(a._exec()) |