summaryrefslogtreecommitdiffstats
path: root/juk/systemtray.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'juk/systemtray.cpp')
-rw-r--r--juk/systemtray.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/juk/systemtray.cpp b/juk/systemtray.cpp
index 85abc339..ae3aee32 100644
--- a/juk/systemtray.cpp
+++ b/juk/systemtray.cpp
@@ -540,7 +540,7 @@ void SystemTray::setToolTip(const TQString &tip, const TQPixmap &cover)
void SystemTray::wheelEvent(TQWheelEvent *e)
{
- if(e->orientation() ==Qt::Horizontal)
+ if(e->orientation() ==TQt::Horizontal)
return;
// I already know the type here, but this file doesn't (and I don't want it
@@ -571,12 +571,12 @@ void SystemTray::wheelEvent(TQWheelEvent *e)
void SystemTray::mousePressEvent(TQMouseEvent *e)
{
switch(e->button()) {
- case Qt::LeftButton:
- case Qt::RightButton:
+ case TQt::LeftButton:
+ case TQt::RightButton:
default:
KSystemTray::mousePressEvent(e);
break;
- case Qt::MidButton:
+ case TQt::MidButton:
if(!rect().contains(e->pos()))
return;
if(action("pause")->isEnabled())