diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:47:39 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-17 14:27:33 +0900 |
commit | 20cfc90d4f4c8228914ed6196bb03472b7e31c77 (patch) | |
tree | 6d70b31d72350300cbeddf18db2dc8b3d9a70c5c /juk/statuslabel.cpp | |
parent | 172024abe61897349878c7421cfd99a8d2aa957a (diff) | |
download | tdemultimedia-20cfc90d4f4c8228914ed6196bb03472b7e31c77.tar.gz tdemultimedia-20cfc90d4f4c8228914ed6196bb03472b7e31c77.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
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 4dcf5163..a75f67dc 100644 --- a/juk/statuslabel.cpp +++ b/juk/statuslabel.cpp @@ -179,7 +179,7 @@ bool StatusLabel::eventFilter(TQObject *o, TQEvent *e) if(e->type() == TQEvent::MouseButtonRelease && mouseEvent->button() == Qt::LeftButton) { - if(TQT_BASE_OBJECT(o) == TQT_BASE_OBJECT(m_itemTimeLabel)) { + if(o == m_itemTimeLabel) { m_showTimeRemaining = !m_showTimeRemaining; updateTime(); } |