diff options
author | Michele Calgaro <[email protected]> | 2023-08-08 12:20:43 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-08-08 20:10:54 +0900 |
commit | 196b1629b9f5de20f3769eb5ec755a635df3c3e7 (patch) | |
tree | 0f9de901a6b71ee79c80a8186ac3b985998e55b0 /twin/lib/kcommondecoration.cpp | |
parent | 311da82aeb967658bb6bd69d9b17ceabf0fc9a0f (diff) | |
download | tdebase-196b1629b9f5de20f3769eb5ec755a635df3c3e7.tar.gz tdebase-196b1629b9f5de20f3769eb5ec755a635df3c3e7.zip |
Drop TQT_TQ*_OBJECT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit 7bc43c68b3c095631628e1fb691242315687d15b)
Diffstat (limited to 'twin/lib/kcommondecoration.cpp')
-rw-r--r-- | twin/lib/kcommondecoration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/twin/lib/kcommondecoration.cpp b/twin/lib/kcommondecoration.cpp index 54ee415e2..3d97027a3 100644 --- a/twin/lib/kcommondecoration.cpp +++ b/twin/lib/kcommondecoration.cpp @@ -881,7 +881,7 @@ bool KCommonDecoration::isToolWindow() const TQRect KCommonDecoration::titleRect() const { int r_x, r_y, r_x2, r_y2; - TQT_TQRECT_OBJECT(widget()->rect()).coords(&r_x, &r_y, &r_x2, &r_y2); + widget()->rect().coords(&r_x, &r_y, &r_x2, &r_y2); const int titleEdgeLeft = layoutMetric(LM_TitleEdgeLeft); const int titleEdgeTop = layoutMetric(LM_TitleEdgeTop); const int titleEdgeRight = layoutMetric(LM_TitleEdgeRight); |