diff options
author | Michele Calgaro <[email protected]> | 2023-11-30 21:29:50 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-02 22:39:27 +0900 |
commit | 588c6181fa91c6a060db06750d97cbb328b76847 (patch) | |
tree | 16227afced2d9fe02787182b927acee39df3cdb6 /noatun-plugins/alsaplayer/userinterface.cpp | |
parent | a67df8047e64fb24b7a584dd603872996568b15a (diff) | |
download | tdeaddons-588c6181fa91c6a060db06750d97cbb328b76847.tar.gz tdeaddons-588c6181fa91c6a060db06750d97cbb328b76847.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit ddcc35a4b1cb5de03a552cbd89a794c4998703f5)
Diffstat (limited to 'noatun-plugins/alsaplayer/userinterface.cpp')
-rw-r--r-- | noatun-plugins/alsaplayer/userinterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noatun-plugins/alsaplayer/userinterface.cpp b/noatun-plugins/alsaplayer/userinterface.cpp index cbd6598..4745e1f 100644 --- a/noatun-plugins/alsaplayer/userinterface.cpp +++ b/noatun-plugins/alsaplayer/userinterface.cpp @@ -223,11 +223,11 @@ bool AlsaPlayer::eventFilter(TQObject *o, TQEvent *e) switch (e->type()) { case TQEvent::MouseButtonPress: - mousePressEvent(TQT_TQMOUSEEVENT(e)); + mousePressEvent(static_cast<TQMouseEvent*>(e)); break; case TQEvent::Wheel: - wheelEvent(TQT_TQWHEELEVENT(e)); + wheelEvent(static_cast<TQWheelEvent*>(e)); return true; break; |