summaryrefslogtreecommitdiffstats
path: root/ktouch/src/main.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-13 11:49:24 +0900
committerMichele Calgaro <[email protected]>2024-01-19 10:25:42 +0900
commit69e4de2f4cee257151ca13b207dc677b2d958fed (patch)
tree01cb14d87074092f48260fe4db758dcb89917d98 /ktouch/src/main.cpp
parent0d9cc39b25fa93369504fbbf3ea91f01fb376aab (diff)
downloadtdeedu-69e4de2f4cee257151ca13b207dc677b2d958fed.tar.gz
tdeedu-69e4de2f4cee257151ca13b207dc677b2d958fed.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ktouch/src/main.cpp')
-rw-r--r--ktouch/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ktouch/src/main.cpp b/ktouch/src/main.cpp
index cebc0a0d..0e5ad898 100644
--- a/ktouch/src/main.cpp
+++ b/ktouch/src/main.cpp
@@ -61,7 +61,7 @@ int main(int argc, char **argv)
splash.setHideEnabled( true ); // allow user to click the splash screen away
splash.show(); // show it
TQTimer splashTimer;
- splashTimer.connect(&splashTimer, TQT_SIGNAL(timeout()), &splash, TQT_SLOT(hide()));
+ splashTimer.connect(&splashTimer, TQ_SIGNAL(timeout()), &splash, TQ_SLOT(hide()));
splashTimer.start(2000, true); // start singleshot timer to hide the splashscreen
*/