diff options
Diffstat (limited to 'kaffeine/src/player-parts/xine-part/kxinewidget.cpp')
-rw-r--r-- | kaffeine/src/player-parts/xine-part/kxinewidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kaffeine/src/player-parts/xine-part/kxinewidget.cpp b/kaffeine/src/player-parts/xine-part/kxinewidget.cpp index 80804b2..58c12c5 100644 --- a/kaffeine/src/player-parts/xine-part/kxinewidget.cpp +++ b/kaffeine/src/player-parts/xine-part/kxinewidget.cpp @@ -2793,14 +2793,14 @@ void KXineWidget::mousePressEvent(TQMouseEvent* mev) if (!m_xineReady) return; int cur = cursor().shape(); - if (mev->button() == Qt::MidButton) + if (mev->button() == TQt::MidButton) { emit signalMiddleClick(); mev->ignore(); return; } - if (mev->button() == Qt::RightButton) + if (mev->button() == TQt::RightButton) { if ( (cur == TQt::ArrowCursor) || (cur == TQt::BlankCursor) ) { @@ -2810,7 +2810,7 @@ void KXineWidget::mousePressEvent(TQMouseEvent* mev) } } - if (mev->button() == Qt::LeftButton) + if (mev->button() == TQt::LeftButton) { if ( (cur == TQt::ArrowCursor) || (cur == TQt::BlankCursor) ) { |