summaryrefslogtreecommitdiffstats
path: root/noatun/modules/noatunui/userinterface.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun/modules/noatunui/userinterface.cpp')
-rw-r--r--noatun/modules/noatunui/userinterface.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/noatun/modules/noatunui/userinterface.cpp b/noatun/modules/noatunui/userinterface.cpp
index 1919fade..7019aea5 100644
--- a/noatun/modules/noatunui/userinterface.cpp
+++ b/noatun/modules/noatunui/userinterface.cpp
@@ -80,9 +80,9 @@ MilkChocolate::MilkChocolate() : TQWidget(0,"NoatunUI"), UserInterface()
}
- mVolume=new L33tSlider(0,100,10,0,Qt::Horizontal, this);
+ mVolume=new L33tSlider(0,100,10,0,TQt::Horizontal, this);
mVolume->setValue(napp->player()->volume());
- mSeeker=new L33tSlider(0,1000,10,0,Qt::Horizontal, this);
+ mSeeker=new L33tSlider(0,1000,10,0,TQt::Horizontal, this);
mStatusBar=new KStatusBar(this);
@@ -179,7 +179,7 @@ void MilkChocolate::dropEvent(TQDropEvent *event)
void MilkChocolate::mouseReleaseEvent(TQMouseEvent *e)
{
TQWidget::mouseReleaseEvent(e);
- if (e->button()!=Qt::RightButton) return;
+ if (e->button()!=TQt::RightButton) return;
NoatunStdAction::ContextMenu::showContextMenu();
}
@@ -281,7 +281,7 @@ void MilkChocolate::changeLoopType(int t)
bool MilkChocolate::eventFilter(TQObject *o, TQEvent *e)
{
if ((e->type() == TQEvent::MouseButtonRelease)
- && ((TQT_TQMOUSEEVENT(e))->button()==Qt::RightButton))
+ && ((TQT_TQMOUSEEVENT(e))->button()==TQt::RightButton))
{
mouseReleaseEvent(TQT_TQMOUSEEVENT(e));
return true;