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