diff options
Diffstat (limited to 'kshutdown/msystemtray.cpp')
-rw-r--r-- | kshutdown/msystemtray.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kshutdown/msystemtray.cpp b/kshutdown/msystemtray.cpp index de84c53..35bb06e 100644 --- a/kshutdown/msystemtray.cpp +++ b/kshutdown/msystemtray.cpp @@ -140,11 +140,11 @@ MSystemTray::MSystemTray() // init fade timer _fadeTimer = new TQTimer(this); - connect(_fadeTimer, SIGNAL(timeout()), SLOT(slotFade())); + connect(_fadeTimer, TQ_SIGNAL(timeout()), TQ_SLOT(slotFade())); // init flash timer _flashTimer = new TQTimer(this); - connect(_flashTimer, SIGNAL(timeout()), SLOT(slotFlashTimeout())); + connect(_flashTimer, TQ_SIGNAL(timeout()), TQ_SLOT(slotFlashTimeout())); // init icons KPixmap pm(SmallIcon("system-log-out", TDEIcon::SizeSmallMedium)); @@ -168,8 +168,8 @@ MSystemTray::MSystemTray() // quit signal connect( - this, SIGNAL(quitSelected()), - ks_main, SLOT(slotQuit())); + this, TQ_SIGNAL(quitSelected()), + ks_main, TQ_SLOT(slotQuit())); } // private slots |