summaryrefslogtreecommitdiff
path: root/include/svx/SmartTagMgr.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-07-07 15:59:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-07-07 18:59:55 +0200
commiteb96c8634a890071c72592a51afdacc2120a08b9 (patch)
treeb51df50a38b6cf0c6cdce036e640fd7695c9ad52 /include/svx/SmartTagMgr.hxx
parentb917adc4d6679dac5aa96b3fb2f09f7155ea85db (diff)
loplugin:passstuffbyref also for {css::uno,rtl}::Reference
Change-Id: Ie219b6b6cc876cb46faadd7aa9c4f997702781bb
Diffstat (limited to 'include/svx/SmartTagMgr.hxx')
-rw-r--r--include/svx/SmartTagMgr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/SmartTagMgr.hxx b/include/svx/SmartTagMgr.hxx
index ae741ac48f6c..0a7cfcc4c700 100644
--- a/include/svx/SmartTagMgr.hxx
+++ b/include/svx/SmartTagMgr.hxx
@@ -72,7 +72,7 @@ struct ActionReference
{
css::uno::Reference< css::smarttags::XSmartTagAction > mxSmartTagAction;
sal_Int32 mnSmartTagIndex;
- ActionReference( css::uno::Reference< css::smarttags::XSmartTagAction > xSmartTagAction, sal_Int32 nSmartTagIndex )
+ ActionReference( css::uno::Reference< css::smarttags::XSmartTagAction > const & xSmartTagAction, sal_Int32 nSmartTagIndex )
: mxSmartTagAction( xSmartTagAction), mnSmartTagIndex( nSmartTagIndex ) {}
};