summaryrefslogtreecommitdiffstats
path: root/twin-styles/smooth-blend/client/smoothblend.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:30:19 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-30 21:30:19 +0900
commit5e5046aefa744f5dd80a1742a10212a25d133912 (patch)
tree332d4a45b7c65ed95e844201522e3f353fb83e64 /twin-styles/smooth-blend/client/smoothblend.cpp
parentf6494efdde0a3cf0f93fd8e51f2f84accaeb19c1 (diff)
downloadtdeartwork-5e5046aefa744f5dd80a1742a10212a25d133912.tar.gz
tdeartwork-5e5046aefa744f5dd80a1742a10212a25d133912.zip
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'twin-styles/smooth-blend/client/smoothblend.cpp')
-rw-r--r--twin-styles/smooth-blend/client/smoothblend.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/twin-styles/smooth-blend/client/smoothblend.cpp b/twin-styles/smooth-blend/client/smoothblend.cpp
index b097a32b..ba9d5973 100644
--- a/twin-styles/smooth-blend/client/smoothblend.cpp
+++ b/twin-styles/smooth-blend/client/smoothblend.cpp
@@ -1047,27 +1047,27 @@ bool smoothblendClient::eventFilter(TQObject *obj, TQEvent *e) {
switch (e->type()) {
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::Paint: {
- paintEvent(TQT_TQPAINTEVENT(e));
+ paintEvent(static_cast<TQPaintEvent*>(e));
return true;
}
case TQEvent::Resize: {
- resizeEvent(TQT_TQRESIZEEVENT(e));
+ resizeEvent(static_cast<TQResizeEvent*>(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: {