diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-11 09:23:29 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-11 11:38:57 +0200 |
commit | 9f877f677346968774d4366f105114fe7f36dd69 (patch) | |
tree | d8fb1f3924b5956c8f693acb8df33ba9757f9dc1 /include/oox/helper/propertymap.hxx | |
parent | b9d091e7d4eb3014aa6198f64f414702105b5aab (diff) |
clang-tidy performance-unnecessary-value-param in oox
Change-Id: I1ac86906ea21c00f8d77834c94583be7d9e9974e
Diffstat (limited to 'include/oox/helper/propertymap.hxx')
-rw-r--r-- | include/oox/helper/propertymap.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/oox/helper/propertymap.hxx b/include/oox/helper/propertymap.hxx index aa6696b0248e..8aa7f3d14a06 100644 --- a/include/oox/helper/propertymap.hxx +++ b/include/oox/helper/propertymap.hxx @@ -104,10 +104,10 @@ public: #if OSL_DEBUG_LEVEL > 0 #ifdef DBG_UTIL - static void dump( css::uno::Reference< css::beans::XPropertySet > rXPropSet); + static void dump( const css::uno::Reference< css::beans::XPropertySet >& rXPropSet); #endif - static void dumpCode( css::uno::Reference< css::beans::XPropertySet > rXPropSet); - static void dumpData(css::uno::Reference<css::beans::XPropertySet> rXPropSet); + static void dumpCode( const css::uno::Reference< css::beans::XPropertySet >& rXPropSet); + static void dumpData( const css::uno::Reference<css::beans::XPropertySet>& rXPropSet); #endif private: const PropertyNameVector* mpPropNames; |