diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-07-20 09:51:36 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2022-07-21 08:59:50 +0200 |
commit | 85f4938719180e1e344b28c073f909df6f972f96 (patch) | |
tree | 21aa235575692503cf2a2d40f0e63b7aad661b9f /include/svx/AccessibleShapeInfo.hxx | |
parent | cf69bb4f503eb8b3966d5caf825e0c05264a369e (diff) |
clang-tidy modernize-pass-by-value in svx
Change-Id: Iedd87d321f4d161574df87629fdd6c7714ff31c5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/137248
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svx/AccessibleShapeInfo.hxx')
-rw-r--r-- | include/svx/AccessibleShapeInfo.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/include/svx/AccessibleShapeInfo.hxx b/include/svx/AccessibleShapeInfo.hxx index 5cb9bfb0db04..1860c5259169 100644 --- a/include/svx/AccessibleShapeInfo.hxx +++ b/include/svx/AccessibleShapeInfo.hxx @@ -68,20 +68,20 @@ public: /** Copy the given values into the members described above. */ AccessibleShapeInfo ( - const css::uno::Reference< - css::drawing::XShape>& rxShape, - const css::uno::Reference< - css::accessibility::XAccessible>& rxParent, + css::uno::Reference< + css::drawing::XShape> xShape, + css::uno::Reference< + css::accessibility::XAccessible> xParent, IAccessibleParent* pChildrenManager); /** Copy the given values into the members described above. The accessible parent implementation object is set to NULL. */ AccessibleShapeInfo ( - const css::uno::Reference< - css::drawing::XShape>& rxShape, - const css::uno::Reference< - css::accessibility::XAccessible>& rxParent); + css::uno::Reference< + css::drawing::XShape> xShape, + css::uno::Reference< + css::accessibility::XAccessible> xParent); ~AccessibleShapeInfo(); |