summaryrefslogtreecommitdiffstats
path: root/amarok/src/pixmapviewer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'amarok/src/pixmapviewer.cpp')
-rw-r--r--amarok/src/pixmapviewer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/amarok/src/pixmapviewer.cpp b/amarok/src/pixmapviewer.cpp
index 4e133a4c..abd360fb 100644
--- a/amarok/src/pixmapviewer.cpp
+++ b/amarok/src/pixmapviewer.cpp
@@ -37,14 +37,14 @@ void PixmapViewer::drawContents( TQPainter * p, int clipx, int clipy, int clipw,
}
void PixmapViewer::contentsMousePressEvent(TQMouseEvent *event) {
- if(Qt::LeftButton == event->button()) {
+ if(TQt::LeftButton == event->button()) {
m_currentPos = event->globalPos();
m_isDragging = true;
}
}
void PixmapViewer::contentsMouseReleaseEvent(TQMouseEvent *event) {
- if(Qt::LeftButton == event->button()) {
+ if(TQt::LeftButton == event->button()) {
m_currentPos = event->globalPos();
m_isDragging = false;
}