summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2022-03-05 09:40:41 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-03-05 11:59:21 +0100
commit34e347db726a415f3f6df0c1f2112aff6d67bdeb (patch)
tree772cc65ec901bbfe422bfb7cd8ff5e7149e2f7de /svx
parent6f652725fcbb068b8b482a74ef021396d4d0f133 (diff)
AccessibleShape::GetStyle can be const
Change-Id: Ic71ae0645c85ec27cc6a172d379070fe88a9f452 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131045 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/accessibility/AccessibleShape.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/accessibility/AccessibleShape.cxx b/svx/source/accessibility/AccessibleShape.cxx
index 8985e9cba6de..ee36cf297028 100644
--- a/svx/source/accessibility/AccessibleShape.cxx
+++ b/svx/source/accessibility/AccessibleShape.cxx
@@ -225,7 +225,7 @@ void AccessibleShape::UpdateStates()
pStateSet->RemoveState (AccessibleStateType::SELECTED);
}
-OUString AccessibleShape::GetStyle()
+OUString AccessibleShape::GetStyle() const
{
return ShapeTypeHandler::CreateAccessibleBaseName( mxShape );
}