summaryrefslogtreecommitdiffstats
path: root/kmix/mdwenum.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/mdwenum.cpp')
-rw-r--r--kmix/mdwenum.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kmix/mdwenum.cpp b/kmix/mdwenum.cpp
index 708000f2..04500df7 100644
--- a/kmix/mdwenum.cpp
+++ b/kmix/mdwenum.cpp
@@ -45,7 +45,7 @@
* The orientation (horizontal, vertical) is ignored
*/
MDWEnum::MDWEnum(Mixer *mixer, MixDevice* md,
- Qt::Orientation orientation,
+ TQt::Orientation orientation,
TQWidget* parent, ViewBase* mw, const char* name) :
MixDeviceWidget(mixer,md,false,orientation,parent,mw,name),
_label(0), _enumCombo(0), _layout(0)
@@ -73,7 +73,7 @@ MDWEnum::~MDWEnum()
void MDWEnum::createWidgets()
{
- if ( _orientation == Qt::Vertical ) {
+ if ( _orientation == TQt::Vertical ) {
_layout = new TQVBoxLayout( this );
_layout->setAlignment(TQt::AlignHCenter);
}
@@ -195,7 +195,7 @@ bool MDWEnum::eventFilter( TQObject* obj, TQEvent* e )
{
if (e->type() == TQEvent::MouseButtonPress) {
TQMouseEvent *qme = TQT_TQMOUSEEVENT(e);
- if (qme->button() == Qt::RightButton) {
+ if (qme->button() == TQt::RightButton) {
showContextMenu();
return true;
}