diff options
author | Michele Calgaro <[email protected]> | 2023-11-30 21:31:00 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-02 22:46:24 +0900 |
commit | 452c1e8191d38a7449364467ae0601ace808e7f7 (patch) | |
tree | d468d9f534be62e275feb15dc903af92f02e7547 /juk/statuslabel.cpp | |
parent | bd26faa962728155a0a4337ea54b3eb6a454df0b (diff) | |
download | tdemultimedia-452c1e8191d38a7449364467ae0601ace808e7f7.tar.gz tdemultimedia-452c1e8191d38a7449364467ae0601ace808e7f7.zip |
Replace 'Event' #define strings
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7ef70d6552605c1df5653f039314c3ac568069cc)
Diffstat (limited to 'juk/statuslabel.cpp')
-rw-r--r-- | juk/statuslabel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juk/statuslabel.cpp b/juk/statuslabel.cpp index c3c2da0f..a590362c 100644 --- a/juk/statuslabel.cpp +++ b/juk/statuslabel.cpp @@ -175,7 +175,7 @@ bool StatusLabel::eventFilter(TQObject *o, TQEvent *e) if(!o || !e) return false; - TQMouseEvent *mouseEvent = TQT_TQMOUSEEVENT(e); + TQMouseEvent *mouseEvent = static_cast<TQMouseEvent*>(e); if(e->type() == TQEvent::MouseButtonRelease && mouseEvent->button() == TQt::LeftButton) { |