diff options
author | Michele Calgaro <[email protected]> | 2024-01-05 10:33:56 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-05 10:33:56 +0900 |
commit | 2c8e5d7f0e2934d5dc4ff061333fa20bdd292455 (patch) | |
tree | aebcad7e68d766de6e0a068ff0ff254ea8bcc54c | |
parent | da111a61956c1d052c8fe510d0add5dd6c891030 (diff) | |
download | kdbusnotification-2c8e5d7f0e2934d5dc4ff061333fa20bdd292455.tar.gz kdbusnotification-2c8e5d7f0e2934d5dc4ff061333fa20bdd292455.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | src/daemon/daemon.cpp | 2 |
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(); |