summaryrefslogtreecommitdiffstats
path: root/drawinglayer
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2021-09-17 21:49:21 +0200
committerLuboš Luňák <l.lunak@collabora.com>2021-09-20 12:10:44 +0200
commitb22d4785310eac35696df771803dfba0871a50ac (patch)
tree56e394a3c38a2e1f17530fbc18dd8e6b3c5d5098 /drawinglayer
parentFix type of css.drawing.FillProperties FillColor property (diff)
downloadcore-b22d4785310eac35696df771803dfba0871a50ac.tar.gz
core-b22d4785310eac35696df771803dfba0871a50ac.zip
clean up ambiguous confusing rectangle APIs like IsInside()
Reading 'rectA.IsInside( rectB )' kind of suggests that the code checks whether 'rectA is inside rectB', but it's actually the other way around. Rename IsInside() -> Contains(), IsOver() -> Overlaps(), which should make it clear which way the logic goes. Change-Id: I9347450fe7dc34c96df6d636a4e3e660de1801ac Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122271 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Reviewed-by: Luboš Luňák <l.lunak@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'drawinglayer')
-rw-r--r--drawinglayer/source/processor2d/vclprocessor2d.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/drawinglayer/source/processor2d/vclprocessor2d.cxx b/drawinglayer/source/processor2d/vclprocessor2d.cxx
index 77a3adae255d..2ad0e342a209 100644
--- a/drawinglayer/source/processor2d/vclprocessor2d.cxx
+++ b/drawinglayer/source/processor2d/vclprocessor2d.cxx
@@ -572,7 +572,7 @@ void VclProcessor2D::RenderFillGraphicPrimitive2D(
const ::tools::Rectangle aOutRectPixel(
Point(nXPos, nYPos), aNeededBitmapSizePixel);
- if (aOutRectPixel.IsOver(aVisiblePixel))
+ if (aOutRectPixel.Overlaps(aVisiblePixel))
{
if (bPreScaled)
{
@@ -606,7 +606,7 @@ void VclProcessor2D::RenderFillGraphicPrimitive2D(
const ::tools::Rectangle aOutRectPixel(
Point(nXPos, nYPos), aNeededBitmapSizePixel);
- if (aOutRectPixel.IsOver(aVisiblePixel))
+ if (aOutRectPixel.Overlaps(aVisiblePixel))
{
if (bPreScaled)
{