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();