diff options
Diffstat (limited to 'pytquic3/main.cpp')
-rw-r--r-- | pytquic3/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pytquic3/main.cpp b/pytquic3/main.cpp index 24fbbf3..826b1ef 100644 --- a/pytquic3/main.cpp +++ b/pytquic3/main.cpp @@ -228,7 +228,7 @@ int main( int argc, char * argv[] ) out << indent << "if __name__ == \"__main__\":" << endl; ++indent; out << indent << "a = TQApplication(sys.argv)" << endl; - out << indent << "TQObject.connect(a,SIGNAL(\"lastWindowClosed()\"),a,SLOT(\"quit()\"))" << endl; + out << indent << "TQObject.connect(a,TQ_SIGNAL(\"lastWindowClosed()\"),a,TQ_SLOT(\"quit()\"))" << endl; out << indent << "w = " << (subcl ? className : uicClass) << "()" << endl; out << indent << "a.setMainWidget(w)" << endl; |