summaryrefslogtreecommitdiffstats
path: root/twin-styles/system/systemclient.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'twin-styles/system/systemclient.cpp')
-rw-r--r--twin-styles/system/systemclient.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/twin-styles/system/systemclient.cpp b/twin-styles/system/systemclient.cpp
index 822fb6df..17b93e20 100644
--- a/twin-styles/system/systemclient.cpp
+++ b/twin-styles/system/systemclient.cpp
@@ -417,19 +417,19 @@ bool SystemClient::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::Wheel:
- wheelEvent( TQT_TQWHEELEVENT( e ));
+ wheelEvent( static_cast<TQWheelEvent*>( e ));
return true;
default:
break;