diff options
Diffstat (limited to 'kmix')
-rw-r--r-- | kmix/mdwenum.cpp | 2 | ||||
-rw-r--r-- | kmix/mdwslider.cpp | 4 | ||||
-rw-r--r-- | kmix/mdwswitch.cpp | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/kmix/mdwenum.cpp b/kmix/mdwenum.cpp index 04500df7..ceeac1f3 100644 --- a/kmix/mdwenum.cpp +++ b/kmix/mdwenum.cpp @@ -194,7 +194,7 @@ void MDWEnum::setDisabled( bool value ) { bool MDWEnum::eventFilter( TQObject* obj, TQEvent* e ) { if (e->type() == TQEvent::MouseButtonPress) { - TQMouseEvent *qme = TQT_TQMOUSEEVENT(e); + TQMouseEvent *qme = static_cast<TQMouseEvent*>(e); if (qme->button() == TQt::RightButton) { showContextMenu(); return true; diff --git a/kmix/mdwslider.cpp b/kmix/mdwslider.cpp index f75041d9..6b493e48 100644 --- a/kmix/mdwslider.cpp +++ b/kmix/mdwslider.cpp @@ -934,7 +934,7 @@ TQSize MDWSlider::sizeHint() const { bool MDWSlider::eventFilter( TQObject* obj, TQEvent* e ) { if (e->type() == TQEvent::MouseButtonPress) { - TQMouseEvent *qme = TQT_TQMOUSEEVENT(e); + TQMouseEvent *qme = static_cast<TQMouseEvent*>(e); if (qme->button() == TQt::RightButton) { showContextMenu(); return true; @@ -942,7 +942,7 @@ bool MDWSlider::eventFilter( TQObject* obj, TQEvent* e ) } // Attention: We don't filter WheelEvents for KSmallSlider, because it handles WheelEvents itself else if ( (e->type() == TQEvent::Wheel) && !obj->isA("KSmallSlider") ) { - TQWheelEvent *qwe = TQT_TQWHEELEVENT(e); + TQWheelEvent *qwe = static_cast<TQWheelEvent*>(e); if (qwe->delta() > 0) { increaseVolume(); } diff --git a/kmix/mdwswitch.cpp b/kmix/mdwswitch.cpp index 9a59028e..48b918a3 100644 --- a/kmix/mdwswitch.cpp +++ b/kmix/mdwswitch.cpp @@ -219,7 +219,7 @@ void MDWSwitch::setDisabled( bool value ) { bool MDWSwitch::eventFilter( TQObject* obj, TQEvent* e ) { if (e->type() == TQEvent::MouseButtonPress) { - TQMouseEvent *qme = TQT_TQMOUSEEVENT(e); + TQMouseEvent *qme = static_cast<TQMouseEvent*>(e); if (qme->button() == TQt::RightButton) { showContextMenu(); return true; |