diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-30 21:31:00 +0900 |
commit | 7ef70d6552605c1df5653f039314c3ac568069cc (patch) | |
tree | db2665f267bfba3c2eac260ba5c5fcc29b1ff4d7 /noatun/modules/excellent | |
parent | 1304109bee51323c2fb7258df91b2d4eccd83030 (diff) | |
download | tdemultimedia-7ef70d6552605c1df5653f039314c3ac568069cc.tar.gz tdemultimedia-7ef70d6552605c1df5653f039314c3ac568069cc.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun/modules/excellent')
-rw-r--r-- | noatun/modules/excellent/userinterface.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/noatun/modules/excellent/userinterface.cpp b/noatun/modules/excellent/userinterface.cpp index 40154489..540a3abc 100644 --- a/noatun/modules/excellent/userinterface.cpp +++ b/noatun/modules/excellent/userinterface.cpp @@ -248,7 +248,7 @@ bool Excellent::eventFilter(TQObject *o, TQEvent *e) { if (e->type() == TQEvent::Wheel) { - wheelEvent(TQT_TQWHEELEVENT(e)); + wheelEvent(static_cast<TQWheelEvent*>(e)); return true; } return TQWidget::eventFilter(o, e); |