summaryrefslogtreecommitdiffstats
path: root/examples3/SQL/runform2.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples3/SQL/runform2.py')
-rwxr-xr-xexamples3/SQL/runform2.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples3/SQL/runform2.py b/examples3/SQL/runform2.py
index ba0ca4a..485eed3 100755
--- a/examples3/SQL/runform2.py
+++ b/examples3/SQL/runform2.py
@@ -11,9 +11,9 @@ class mainWindow(Form2):
Form2.__init__(self,parent,name,fl)
if __name__ == "__main__":
- a = QApplication(sys.argv)
+ a = TQApplication(sys.argv)
if createConnection():
- QObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
+ TQObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
w = mainWindow()
a.setMainWidget(w)
w.show()