summaryrefslogtreecommitdiffstats
path: root/arts/modules/effects/kstereovolumecontrolgui_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'arts/modules/effects/kstereovolumecontrolgui_impl.h')
-rw-r--r--arts/modules/effects/kstereovolumecontrolgui_impl.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/arts/modules/effects/kstereovolumecontrolgui_impl.h b/arts/modules/effects/kstereovolumecontrolgui_impl.h
index b562b988..ff5d96dd 100644
--- a/arts/modules/effects/kstereovolumecontrolgui_impl.h
+++ b/arts/modules/effects/kstereovolumecontrolgui_impl.h
@@ -80,7 +80,7 @@ private:
#include <tqtimer.h>
class KStereoVolumeControlGui_EventMapper : public TQObject {
- Q_OBJECT
+ TQ_OBJECT
public:
TQTimer* _timer;
@@ -88,11 +88,10 @@ public:
public:
KStereoVolumeControlGui_EventMapper( Arts::KStereoVolumeControlGui_impl* impl, TQObject* parent, const char* name=0 ) : TQObject( parent,name ), _impl( impl ) {
_timer = new TQTimer( this );
- connect( _timer, TQT_SIGNAL( timeout() ), this, TQT_SLOT( slotTimerSignal() ) );
+ connect( _timer, TQ_SIGNAL( timeout() ), this, TQ_SLOT( slotTimerSignal() ) );
}
public slots:
void slotTimerSignal() { _impl->updateValues(); }
};
#endif
-// vim: sw=4 ts=4