summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-05 10:33:56 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 19:59:07 +0900
commit6ac34a66f047e7f810c7c9a530ff5db78fb06ee8 (patch)
treeaebcad7e68d766de6e0a068ff0ff254ea8bcc54c
parent93591f24f61c51cfe8c5c45f1418d0ac2d468fb0 (diff)
downloadkdbusnotification-6ac34a66f047e7f810c7c9a530ff5db78fb06ee8.tar.gz
kdbusnotification-6ac34a66f047e7f810c7c9a530ff5db78fb06ee8.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 2c8e5d7f0e2934d5dc4ff061333fa20bdd292455)
-rw-r--r--src/daemon/daemon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/daemon/daemon.cpp b/src/daemon/daemon.cpp
index a15c770..63fa8fb 100644
--- a/src/daemon/daemon.cpp
+++ b/src/daemon/daemon.cpp
@@ -303,7 +303,7 @@ main(int argc, char **argv)
app.setMainWidget(&nc);
GTKNotifierContainer = &nc;
TQTimer *gtkEventProcessor = new TQTimer( &app );
- TQObject::connect( gtkEventProcessor, SIGNAL(timeout()), &nc, SLOT(handleGTKMain()) );
+ TQObject::connect( gtkEventProcessor, TQ_SIGNAL(timeout()), &nc, TQ_SLOT(handleGTKMain()) );
gtkEventProcessor->start( 100, FALSE ); // Every 0.1 seconds poll gtk for DBUS events
app.disableSessionManagement();
app.exec();