summaryrefslogtreecommitdiffstats
path: root/examples/SQL/runform1.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/SQL/runform1.py')
-rwxr-xr-xexamples/SQL/runform1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/SQL/runform1.py b/examples/SQL/runform1.py
index 8ef4908..95113b9 100755
--- a/examples/SQL/runform1.py
+++ b/examples/SQL/runform1.py
@@ -13,7 +13,7 @@ class mainWindow(Form1):
if __name__ == "__main__":
a = TQApplication(sys.argv)
if createConnection():
- TQObject.connect(a,SIGNAL("lastWindowClosed()"),a,SLOT("quit()"))
+ TQObject.connect(a,TQ_SIGNAL("lastWindowClosed()"),a,TQ_SLOT("quit()"))
w = mainWindow()
a.setMainWidget(w)
w.show()