diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:46:35 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-18 18:54:01 +0900 |
commit | 0fc56f21d45249a473d20555ff3071d3b16bee54 (patch) | |
tree | c788136146e1f97187ecaf773563c21cbd42fa11 /kicker/applets/systemtray/systemtrayapplet.cpp | |
parent | 83e74d1e550db6a814ec252968b601f6a9b14f9b (diff) | |
download | tdebase-0fc56f21d45249a473d20555ff3071d3b16bee54.tar.gz tdebase-0fc56f21d45249a473d20555ff3071d3b16bee54.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kicker/applets/systemtray/systemtrayapplet.cpp')
-rw-r--r-- | kicker/applets/systemtray/systemtrayapplet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kicker/applets/systemtray/systemtrayapplet.cpp b/kicker/applets/systemtray/systemtrayapplet.cpp index 97b71d1b2..2fa4910cf 100644 --- a/kicker/applets/systemtray/systemtrayapplet.cpp +++ b/kicker/applets/systemtray/systemtrayapplet.cpp @@ -833,7 +833,7 @@ int SystemTrayApplet::maxIconHeight() const bool SystemTrayApplet::eventFilter(TQObject* watched, TQEvent* e) { - if (TQT_BASE_OBJECT(watched) == TQT_BASE_OBJECT(m_expandButton)) + if (watched == m_expandButton) { TQPoint p; if (e->type() == TQEvent::ContextMenu) |