summaryrefslogtreecommitdiffstats
path: root/noatun/modules/artseffects
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/modules/artseffects')
-rw-r--r--noatun/modules/artseffects/extrastereogui_impl.cc10
-rw-r--r--noatun/modules/artseffects/extrastereogui_impl.h6
2 files changed, 8 insertions, 8 deletions
diff --git a/noatun/modules/artseffects/extrastereogui_impl.cc b/noatun/modules/artseffects/extrastereogui_impl.cc
index 5952c80e..b5a19bf0 100644
--- a/noatun/modules/artseffects/extrastereogui_impl.cc
+++ b/noatun/modules/artseffects/extrastereogui_impl.cc
@@ -1,13 +1,13 @@
-#include <qlayout.h>
-#include <qslider.h>
+#include <tqlayout.h>
+#include <tqslider.h>
#include "extrastereogui_impl.h"
namespace Arts {
-ExtraStereoGUI_impl::ExtraStereoGUI_impl() : QWidget(0)
+ExtraStereoGUI_impl::ExtraStereoGUI_impl() : TQWidget(0)
{
- (new QHBoxLayout(this))->setAutoAdd(true);
- mSlider=new QSlider(0,100,10, 0, Horizontal, this);
+ (new TQHBoxLayout(this))->setAutoAdd(true);
+ mSlider=new TQSlider(0,100,10, 0, Horizontal, this);
mSlider->show();
show();
}
diff --git a/noatun/modules/artseffects/extrastereogui_impl.h b/noatun/modules/artseffects/extrastereogui_impl.h
index 56104ae8..d807644a 100644
--- a/noatun/modules/artseffects/extrastereogui_impl.h
+++ b/noatun/modules/artseffects/extrastereogui_impl.h
@@ -1,12 +1,12 @@
#include "artseffects.h"
#include "stdsynthmodule.h"
-#include <qwidget.h>
+#include <tqwidget.h>
class QSlider;
namespace Arts {
-class ExtraStereoGUI_impl : public QWidget, virtual public ExtraStereoGUI_skel
+class ExtraStereoGUI_impl : public TQWidget, virtual public ExtraStereoGUI_skel
{
public:
ExtraStereo effect;
@@ -19,7 +19,7 @@ public slots:
void changeSlider(int);
private:
- QSlider *mSlider;
+ TQSlider *mSlider;
};