summaryrefslogtreecommitdiffstats
path: root/arts/tools/artscontrolapplet_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'arts/tools/artscontrolapplet_private.h')
-rw-r--r--arts/tools/artscontrolapplet_private.h32
1 files changed, 16 insertions, 16 deletions
diff --git a/arts/tools/artscontrolapplet_private.h b/arts/tools/artscontrolapplet_private.h
index 044a156b..2b681b92 100644
--- a/arts/tools/artscontrolapplet_private.h
+++ b/arts/tools/artscontrolapplet_private.h
@@ -20,15 +20,15 @@
#include "artscontrolapplet.h"
-#include <qobject.h>
+#include <tqobject.h>
-#include <qlayout.h>
-#include <qlabel.h>
-#include <qslider.h>
-#include <qpushbutton.h>
+#include <tqlayout.h>
+#include <tqlabel.h>
+#include <tqslider.h>
+#include <tqpushbutton.h>
#include <kpopupmenu.h>
#include <kaction.h>
-#include <qfont.h>
+#include <tqfont.h>
#include <kartsserver.h>
#include <kartsdispatcher.h>
@@ -45,13 +45,13 @@
class VolumeSlider;
-class KDE_EXPORT ArtsControlAppletPrivate : public QObject {
+class KDE_EXPORT ArtsControlAppletPrivate : public TQObject {
Q_OBJECT
private:
ArtsControlApplet *_parent;
ArtsActions* _artsactions;
public:
- QBoxLayout *layout;
+ TQBoxLayout *layout;
KArtsServer *arts;
KArtsDispatcher *dispatcher;
Arts::StereoVolumeControl volume;
@@ -66,7 +66,7 @@ public:
KAction *_styleNormalBars, *_styleFireBars, *_styleLineBars, *_styleLEDs, *_styleAnalog, *_styleSmall;
ArtsControlAppletPrivate( ArtsControlApplet *parent )
- : QObject(parent)
+ : TQObject(parent)
, _parent( parent )
, barts( false )
, bInUpdate( false )
@@ -82,7 +82,7 @@ public:
menu = new KPopupMenu( 0 );
_showSV = _artsactions->actionScopeView();
_showSV->plug( menu );
- _showSVinline = new KAction( i18n( "Toggle &Inline FFT Scope" ), "artscontrol", KShortcut(), this, SLOT( SVinline() ), this );
+ _showSVinline = new KAction( i18n( "Toggle &Inline FFT Scope" ), "artscontrol", KShortcut(), this, TQT_SLOT( SVinline() ), this );
_showSVinline->plug( menu );
_showAM = _artsactions->actionAudioManager();
_showAM->plug( menu );
@@ -96,12 +96,12 @@ public:
_showMediaTypes->plug( menu );
menu->insertSeparator();
menu->insertItem( i18n( "VU-Style" ), _artsactions->stylemenu() );
- connect( _artsactions, SIGNAL( styleNormal() ), this, SLOT( styleNormalBars() ) );
- connect( _artsactions, SIGNAL( styleFire() ), this, SLOT( styleFireBars() ) );
- connect( _artsactions, SIGNAL( styleLine() ), this, SLOT( styleLineBars() ) );
- connect( _artsactions, SIGNAL( styleLED() ), this, SLOT( styleLEDs() ) );
- connect( _artsactions, SIGNAL( styleAnalog() ), this, SLOT( styleAnalog() ) );
- connect( _artsactions, SIGNAL( styleSmall() ), this, SLOT( styleSmall() ) );
+ connect( _artsactions, TQT_SIGNAL( styleNormal() ), this, TQT_SLOT( styleNormalBars() ) );
+ connect( _artsactions, TQT_SIGNAL( styleFire() ), this, TQT_SLOT( styleFireBars() ) );
+ connect( _artsactions, TQT_SIGNAL( styleLine() ), this, TQT_SLOT( styleLineBars() ) );
+ connect( _artsactions, TQT_SIGNAL( styleLED() ), this, TQT_SLOT( styleLEDs() ) );
+ connect( _artsactions, TQT_SIGNAL( styleAnalog() ), this, TQT_SLOT( styleAnalog() ) );
+ connect( _artsactions, TQT_SIGNAL( styleSmall() ), this, TQT_SLOT( styleSmall() ) );
}
~ArtsControlAppletPrivate() {
if ( svinline ) SVinline();