diff options
Diffstat (limited to 'twin-styles/glow/glowclient.cpp')
-rw-r--r-- | twin-styles/glow/glowclient.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/twin-styles/glow/glowclient.cpp b/twin-styles/glow/glowclient.cpp index f2df7b4b..d4650246 100644 --- a/twin-styles/glow/glowclient.cpp +++ b/twin-styles/glow/glowclient.cpp @@ -865,22 +865,22 @@ bool GlowClient::eventFilter( TQObject* o, TQEvent* e ) switch( e->type()) { case TQEvent::Resize: - resizeEvent( TQT_TQRESIZEEVENT( e )); + resizeEvent( static_cast<TQResizeEvent*>( e )); return true; case TQEvent::Paint: - paintEvent( TQT_TQPAINTEVENT( e )); + paintEvent( static_cast<TQPaintEvent*>( e )); return true; case TQEvent::MouseButtonDblClick: - mouseDoubleClickEvent( TQT_TQMOUSEEVENT( e )); + mouseDoubleClickEvent( static_cast<TQMouseEvent*>( e )); return true; case TQEvent::MouseButtonPress: - processMousePressEvent( TQT_TQMOUSEEVENT( e )); + processMousePressEvent( static_cast<TQMouseEvent*>( e )); return true; case TQEvent::Show: - showEvent( TQT_TQSHOWEVENT( e )); + showEvent( static_cast<TQShowEvent*>( e )); return true; case TQEvent::Wheel: - wheelEvent( TQT_TQWHEELEVENT( e )); + wheelEvent( static_cast<TQWheelEvent*>( e )); return true; default: break; |