summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-07-08 10:04:10 +0100
committerCaolán McNamara <caolanm@redhat.com>2021-07-08 13:06:04 +0200
commit63c9e69f60b3535afe27fcc989ad122a9c993053 (patch)
tree038522f210e9402d6b4f25f8f02ba169a53c1aa0 /svx
parentb92718fe3e9c873dc7d5a3aee66fb2adb780861a (diff)
return value of PixelToLogic ignored
the other uses of SdrObjListPrimitiveHit operate in Logic Position Change-Id: Id6a834a17e6e2252bd4f58d10cd95f7425191203 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118613 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/accessibility/GraphCtlAccessibleContext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/accessibility/GraphCtlAccessibleContext.cxx b/svx/source/accessibility/GraphCtlAccessibleContext.cxx
index 98484033820e..989be9e6d189 100644
--- a/svx/source/accessibility/GraphCtlAccessibleContext.cxx
+++ b/svx/source/accessibility/GraphCtlAccessibleContext.cxx
@@ -177,7 +177,7 @@ Reference< XAccessible > SAL_CALL SvxGraphCtrlAccessibleContext::getAccessibleAt
}
Point aPnt( rPoint.X, rPoint.Y );
- mpControl->GetDrawingArea()->get_ref_device().PixelToLogic( aPnt );
+ aPnt = mpControl->GetDrawingArea()->get_ref_device().PixelToLogic(aPnt);
SdrObject* pObj = nullptr;