diff options
Diffstat (limited to 'noatun-plugins/alarm/wakeup.cpp')
-rw-r--r-- | noatun-plugins/alarm/wakeup.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun-plugins/alarm/wakeup.cpp b/noatun-plugins/alarm/wakeup.cpp index b9f38d1..504ad77 100644 --- a/noatun-plugins/alarm/wakeup.cpp +++ b/noatun-plugins/alarm/wakeup.cpp @@ -60,7 +60,7 @@ Wakeup::Wakeup() : TQObject(), Plugin() update(); TQTimer *timer=new TQTimer(this); - connect (timer,TQT_SIGNAL(timeout()),TQT_SLOT(slotCheckTime())); + connect (timer,TQ_SIGNAL(timeout()),TQ_SLOT(slotCheckTime())); timer->start(60000,false); } @@ -129,7 +129,7 @@ void Wakeup::PlayerAct() // timer for volume (up/down) according to prefs :-) volTimer = new TQTimer (this); - connect (volTimer,TQT_SIGNAL(timeout()), TQT_SLOT(slotVolumeChange())); + connect (volTimer,TQ_SIGNAL(timeout()), TQ_SLOT(slotVolumeChange())); volTimer->start(1000,false); // updates volume every seconds @@ -260,8 +260,8 @@ WakeupPrefs::WakeupPrefs( TQObject *parent ) : volLayout->addWidget(volEndValue); volLayout->addStretch(); - connect (morningmode,TQT_SIGNAL(stateChanged(int)),TQT_SLOT(slotViewFrame(int))); - connect (applyall,TQT_SIGNAL(clicked()),TQT_SLOT(slotApplyAll())); + connect (morningmode,TQ_SIGNAL(stateChanged(int)),TQ_SLOT(slotViewFrame(int))); + connect (applyall,TQ_SIGNAL(clicked()),TQ_SLOT(slotApplyAll())); load(); } |