diff options
Diffstat (limited to 'kmix/mdwenum.cpp')
-rw-r--r-- | kmix/mdwenum.cpp | 2 |
1 files changed, 1 insertions, 1 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; |