diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-07-19 10:49:54 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-07-19 10:49:54 +0200 |
commit | 454ab144c9f531a090a38ad23b5f50af85f1fbea (patch) | |
tree | ae1f9a7fbeb88f193d0ce6b55e022af16232f13c /sw/source/uibase/uitest/uiobject.cxx | |
parent | 58806ee799072776e04d49d95dcba525575f9ce7 (diff) |
clang-tidy performance-unnecessary-value-param in sw
Change-Id: I6cd0d28dade01366b087aebff894b6f003d87b31
Diffstat (limited to 'sw/source/uibase/uitest/uiobject.cxx')
-rw-r--r-- | sw/source/uibase/uitest/uiobject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/source/uibase/uitest/uiobject.cxx b/sw/source/uibase/uitest/uiobject.cxx index 875970582f6f..bf630740654b 100644 --- a/sw/source/uibase/uitest/uiobject.cxx +++ b/sw/source/uibase/uitest/uiobject.cxx @@ -20,7 +20,7 @@ SwEditWinUIObject::SwEditWinUIObject(VclPtr<SwEditWin> xEditWin): namespace { -SwWrtShell& getWrtShell(VclPtr<SwEditWin> xEditWin) +SwWrtShell& getWrtShell(VclPtr<SwEditWin> const & xEditWin) { return xEditWin->GetView().GetWrtShell(); } |