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 /juk/playlist.cpp | |
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 'juk/playlist.cpp')
-rw-r--r-- | juk/playlist.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/juk/playlist.cpp b/juk/playlist.cpp index 38cdb73f..21df8553 100644 --- a/juk/playlist.cpp +++ b/juk/playlist.cpp @@ -1116,7 +1116,7 @@ bool Playlist::eventFilter(TQObject *watched, TQEvent *e) switch(e->type()) { case TQEvent::MouseMove: { - if((TQT_TQMOUSEEVENT(e)->state() & TQt::LeftButton) == TQt::LeftButton && + if((static_cast<TQMouseEvent*>(e)->state() & TQt::LeftButton) == TQt::LeftButton && !action<TDEToggleAction>("resizeColumnsManually")->isChecked()) { m_columnWidthModeChanged = true; @@ -1129,7 +1129,7 @@ bool Playlist::eventFilter(TQObject *watched, TQEvent *e) } case TQEvent::MouseButtonPress: { - if(TQT_TQMOUSEEVENT(e)->button() == TQt::RightButton) + if(static_cast<TQMouseEvent*>(e)->button() == TQt::RightButton) m_headerMenu->popup(TQCursor::pos()); break; |