summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-06-05 08:34:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-06-05 09:22:51 +0200
commit17a2c9e8e2361de27013a25e51f3a3ca729f1b31 (patch)
tree1c89bc104e5630fb71ff0a5b12c464ca2aceebc3 /svtools/inc
parent8fa4b0429b514c0d696ebfc2e47418292d7ec367 (diff)
clang-tidy performance-unnecessary-value-param
Change-Id: I6ed8c54c7c45931d91709cc818f2483c70197192 Reviewed-on: https://gerrit.libreoffice.org/38400 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/uitest/uiobject.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/inc/uitest/uiobject.hxx b/svtools/inc/uitest/uiobject.hxx
index e8ed0af640af..d8a525c206ee 100644
--- a/svtools/inc/uitest/uiobject.hxx
+++ b/svtools/inc/uitest/uiobject.hxx
@@ -17,7 +17,7 @@ class SvSimpleTable;
class TreeListUIObject : public WindowUIObject
{
public:
- TreeListUIObject(VclPtr<SvTreeListBox> xTreeList);
+ TreeListUIObject(const VclPtr<SvTreeListBox>& xTreeList);
virtual StringMap get_state() override;
@@ -43,7 +43,7 @@ class TreeListEntryUIObject : public UIObject
{
public:
- TreeListEntryUIObject(VclPtr<SvTreeListBox> xTreeList, SvTreeListEntry* pEntry);
+ TreeListEntryUIObject(const VclPtr<SvTreeListBox>& xTreeList, SvTreeListEntry* pEntry);
virtual StringMap get_state() override;
@@ -66,7 +66,7 @@ private:
class SimpleTableUIObject : public TreeListUIObject
{
public:
- SimpleTableUIObject(VclPtr<SvSimpleTable> xTable);
+ SimpleTableUIObject(const VclPtr<SvSimpleTable>& xTable);
virtual StringMap get_state() override;