diff options
Diffstat (limited to 'arts/modules/effects')
-rw-r--r-- | arts/modules/effects/kstereovolumecontrolgui_impl.cpp | 6 | ||||
-rw-r--r-- | arts/modules/effects/kstereovolumecontrolgui_impl.h | 16 |
2 files changed, 11 insertions, 11 deletions
diff --git a/arts/modules/effects/kstereovolumecontrolgui_impl.cpp b/arts/modules/effects/kstereovolumecontrolgui_impl.cpp index 3dca494c..b4db259a 100644 --- a/arts/modules/effects/kstereovolumecontrolgui_impl.cpp +++ b/arts/modules/effects/kstereovolumecontrolgui_impl.cpp @@ -21,15 +21,15 @@ #include "kstereovolumecontrolgui_impl.h" -#include <qframe.h> +#include <tqframe.h> #include <kdebug.h> #include <iostream> using namespace Arts; -KStereoVolumeControlGui_impl::KStereoVolumeControlGui_impl( QFrame* w ) : KLayoutBox_impl( w ? w : new QFrame( 0 ) ) +KStereoVolumeControlGui_impl::KStereoVolumeControlGui_impl( TQFrame* w ) : KLayoutBox_impl( w ? w : new TQFrame( 0 ) ) { - //kdDebug()<<"KStereoVolumeControlGui_impl::KStereoVolumeControlGui_impl( QFrame* "<<w<<" )"<<endl; + //kdDebug()<<"KStereoVolumeControlGui_impl::KStereoVolumeControlGui_impl( TQFrame* "<<w<<" )"<<endl; _mapper = new KStereoVolumeControlGui_EventMapper( this, _qframe ); this->addWidget( _label, -100 ); _label.bottom( Arts::East ); diff --git a/arts/modules/effects/kstereovolumecontrolgui_impl.h b/arts/modules/effects/kstereovolumecontrolgui_impl.h index 1681b07c..8729232f 100644 --- a/arts/modules/effects/kstereovolumecontrolgui_impl.h +++ b/arts/modules/effects/kstereovolumecontrolgui_impl.h @@ -46,7 +46,7 @@ protected: float _dbmin, _dbmax; Arts::Direction _dir; public: - KStereoVolumeControlGui_impl( QFrame* =0 ); + KStereoVolumeControlGui_impl( TQFrame* =0 ); void constructor( Arts::StereoVolumeControl ); @@ -76,18 +76,18 @@ private: } // namespace Arts -#include <qobject.h> -#include <qtimer.h> +#include <tqobject.h> +#include <tqtimer.h> -class KStereoVolumeControlGui_EventMapper : public QObject { +class KStereoVolumeControlGui_EventMapper : public TQObject { Q_OBJECT public: - QTimer* _timer; + TQTimer* _timer; Arts::KStereoVolumeControlGui_impl* _impl; public: - KStereoVolumeControlGui_EventMapper( Arts::KStereoVolumeControlGui_impl* impl, QObject* parent, const char* name=0 ) : QObject( parent,name ), _impl( impl ) { - _timer = new QTimer( this ); - connect( _timer, SIGNAL( timeout() ), this, SLOT( slotTimerSignal() ) ); + 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() ) ); } public slots: void slotTimerSignal() { _impl->updateValues(); } |