summaryrefslogtreecommitdiffstats
path: root/kmix/viewbase.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:43:15 +0000
commite654398e46e37abf457b2b1122ab898d2c51c49f (patch)
treed39ee6440f3c3663c3ead84a2d4cc2d034667e96 /kmix/viewbase.h
parente4f29b18e19394b9352f52a6c0d0d0e3932cf511 (diff)
downloadtdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.tar.gz
tdemultimedia-e654398e46e37abf457b2b1122ab898d2c51c49f.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdemultimedia@1157644 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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