diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-12 11:55:28 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-12 11:55:28 +0200 |
commit | 230cd638676fc5adf7e3fe5e69d29eadb194d7f8 (patch) | |
tree | 5185039681843f02f4782edd6580df4332c51055 /starmath/source/mathmlexport.hxx | |
parent | 9649026cf50533595c172cd81b96acd45603d86b (diff) |
clang-tidy performance-unnecessary-value-param in starmath
Change-Id: Ic8d319dac1d18f548d47ac84e489c04412a38d1a
Diffstat (limited to 'starmath/source/mathmlexport.hxx')
-rw-r--r-- | starmath/source/mathmlexport.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/starmath/source/mathmlexport.hxx b/starmath/source/mathmlexport.hxx index 7c11d66392e5..2a58f570f5d9 100644 --- a/starmath/source/mathmlexport.hxx +++ b/starmath/source/mathmlexport.hxx @@ -49,15 +49,15 @@ public: void SetFlat(bool bIn) {bFlat = bIn;} static bool WriteThroughComponent( - css::uno::Reference< css::io::XOutputStream > xOutputStream, - css::uno::Reference< css::lang::XComponent > xComponent, + const css::uno::Reference< css::io::XOutputStream >& xOutputStream, + const css::uno::Reference< css::lang::XComponent >& xComponent, css::uno::Reference< css::uno::XComponentContext > & rxContext, css::uno::Reference< css::beans::XPropertySet > & rPropSet, const sal_Char* pComponentName ); static bool WriteThroughComponent( const css::uno::Reference< css::embed::XStorage >& xStor, - css::uno::Reference< css::lang::XComponent > xComponent, + const css::uno::Reference< css::lang::XComponent >& xComponent, const sal_Char* pStreamName, css::uno::Reference< css::uno::XComponentContext > & rxContext, css::uno::Reference< css::beans::XPropertySet > & rPropSet, |