diff options
Diffstat (limited to 'examples2/tut1.py')
-rwxr-xr-x | examples2/tut1.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/examples2/tut1.py b/examples2/tut1.py deleted file mode 100755 index f6e4b47..0000000 --- a/examples2/tut1.py +++ /dev/null @@ -1,16 +0,0 @@ -#!/usr/bin/env python - -# TQt tutorial 1. - -import sys -from python_tqt.qt import * - - -a = TQApplication(sys.argv) - -hello = TQPushButton("Hello world!",None) -hello.resize(100,30) - -a.setMainWidget(hello) -hello.show() -a.exec_loop() |