summaryrefslogtreecommitdiffstats
path: root/kmix/viewbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/viewbase.h')
-rw-r--r--kmix/viewbase.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/kmix/viewbase.h b/kmix/viewbase.h
index 50d92b10..581ac39e 100644
--- a/kmix/viewbase.h
+++ b/kmix/viewbase.h
@@ -2,7 +2,7 @@
#define ViewBase_h
// QT
-#include "qwidget.h"
+#include "tqwidget.h"
// KDE
class KActionCollection;
@@ -31,7 +31,7 @@ public:
Experimental_GridView = 0x2000
};
- ViewBase(QWidget* parent, const char* name, const QString & caption, Mixer* mixer, WFlags=0, ViewFlags vflags=0);
+ ViewBase(TQWidget* parent, const char* name, const TQString & caption, Mixer* mixer, WFlags=0, ViewFlags vflags=0);
virtual ~ViewBase();
// Subclasses must define this method. It is called by the ViewBase() constuctor.
@@ -72,7 +72,7 @@ public:
* Creates a suitable representation for the given MixDevice.
* The default implementation creates a label
*/
- virtual QWidget* add(MixDevice *);
+ virtual TQWidget* add(MixDevice *);
/**
* Popup stuff
@@ -89,9 +89,9 @@ public:
* Hint: The new ViewSurround class shows that a 1:1 relationship does not work in a general scenario.
* I actually DID expect this. The solution is unclear yet, probably there will be a virtual mapper method.
*/
- QPtrList<QWidget> _mdws; // this obsoletes the former Channel class
+ TQPtrList<TQWidget> _mdws; // this obsoletes the former Channel class
- QString caption() const { return _caption; }
+ TQString caption() const { return _caption; }
protected:
void init();
@@ -108,13 +108,13 @@ public slots:
void toggleMenuBarSlot();
protected slots:
- void mousePressEvent( QMouseEvent *e );
+ void mousePressEvent( TQMouseEvent *e );
signals:
void toggleMenuBar();
private:
- QString _caption;
+ TQString _caption;
};
#endif