summaryrefslogtreecommitdiffstats
path: root/knights/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'knights/main.cpp')
-rw-r--r--knights/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/knights/main.cpp b/knights/main.cpp
index cc76045..1223bc8 100644
--- a/knights/main.cpp
+++ b/knights/main.cpp
@@ -80,7 +80,7 @@ int main(int argc, char *argv[])
}
/* Without this connection, the destructors are not called, and some
housecleaning ( like destroying child processes ) isn't done */
- a.connect( &a, TQT_SIGNAL( shutDown () ), knights, TQT_SLOT( KillAll() ) );
- a.connect( &a, SIGNAL( aboutToQuit() ), knights, SLOT( aboutToQuit() ) );
+ a.connect( &a, TQ_SIGNAL( shutDown () ), knights, TQ_SLOT( KillAll() ) );
+ a.connect( &a, TQ_SIGNAL( aboutToQuit() ), knights, TQ_SLOT( aboutToQuit() ) );
return a.exec();
}