diff options
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/uitest/uiobject.hxx | 6 |
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; |