summaryrefslogtreecommitdiffstats
path: root/knights/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-28 16:38:14 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-29 16:58:54 +0900
commitff0d52cab681a2154a1462935a5d9e4d6ebfe34e (patch)
treee7b68b2081d7f379ec279b5e99f42769c6d2eca8 /knights/main.cpp
parent67931fdc7eef3648d88a34b9b01376ca8f6a70d7 (diff)
downloadknights-ff0d52cab681a2154a1462935a5d9e4d6ebfe34e.tar.gz
knights-ff0d52cab681a2154a1462935a5d9e4d6ebfe34e.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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();
}