diff options
Diffstat (limited to 'examples/extension')
-rw-r--r-- | examples/extension/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/extension/main.cpp b/examples/extension/main.cpp index 98579af15..0bcaef440 100644 --- a/examples/extension/main.cpp +++ b/examples/extension/main.cpp @@ -6,6 +6,6 @@ int main( int argc, char ** argv ) TQApplication a( argc, argv ); MainForm *w = new MainForm; w->show(); - a.connect( &a, SIGNAL( lastWindowClosed() ), w, SLOT( quit() ) ); + a.connect( &a, TQ_SIGNAL( lastWindowClosed() ), w, TQ_SLOT( quit() ) ); return a.exec(); } |