summaryrefslogtreecommitdiff
path: root/include/vcl/outdev.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-01-27 15:03:17 +0000
committerCaolán McNamara <caolanm@redhat.com>2021-01-28 11:55:30 +0100
commitddf8a2f91bb14be1b1cca2d2ea0ebd7fda5dd0fe (patch)
treefef6d1f8cca75a09de7ed2d8efb438a2be07272c /include/vcl/outdev.hxx
parent1da69081732c8a429840edaaf10cfb789ea68df8 (diff)
TopLeft().Y() -> Top() etc.
TopLeft().X() -> Left() BottomLeft().X() -> Left() TopRight().X() -> Right() BottomRight().X() -> Right() TopLeft().Y() -> Top() TopRight().Y() -> Top() BottomLeft().Y() -> Bottom() BottomRight().Y() -> Bottom() Change-Id: I5050f619bf92cfc59b6f8dfe7c9f98ef1453c294 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110022 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/vcl/outdev.hxx')
-rw-r--r--include/vcl/outdev.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/vcl/outdev.hxx b/include/vcl/outdev.hxx
index 8c4f47b74ad4..d101b6c8c571 100644
--- a/include/vcl/outdev.hxx
+++ b/include/vcl/outdev.hxx
@@ -1061,7 +1061,7 @@ public:
tools::Rectangle aRect;
aDevice.GetTextBoundRect(aRect, aText);
- aDevice.SetOutputSize(Size(aRect.BottomRight().X() + 1, aRect.BottomRight().Y() + 1));
+ aDevice.SetOutputSize(Size(aRect.Right() + 1, aRect.Bottom() + 1));
aDevice.SetBackground(Wallpaper(COL_TRANSPARENT));
aDevice.DrawText(Point(0,0), aText);