diff options
author | Noel Grandin <noel@peralex.com> | 2016-04-13 15:14:04 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-04-14 09:21:40 +0200 |
commit | d1f6f79d0df21c2bb3be9d191233eabf22afb14e (patch) | |
tree | b124796ed1043c5dc68dc416469e088228448492 /sc/source/ui/vba/vbachart.hxx | |
parent | 492f2ff0053a11aa6e49a18a9a8caf87edb68436 (diff) |
loplugin:passstuffbyref in sc
Change-Id: I75c483972db787ea9c941eaac0df023f1929b09c
Diffstat (limited to 'sc/source/ui/vba/vbachart.hxx')
-rw-r--r-- | sc/source/ui/vba/vbachart.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/vba/vbachart.hxx b/sc/source/ui/vba/vbachart.hxx index 21c1e9065742..0f1dedde38c9 100644 --- a/sc/source/ui/vba/vbachart.hxx +++ b/sc/source/ui/vba/vbachart.hxx @@ -64,7 +64,7 @@ public: ScVbaChart( const css::uno::Reference< ov::XHelperInterface >& _xParent, const css::uno::Reference< css::uno::XComponentContext >& _xContext, const css::uno::Reference< css::lang::XComponent >& _xChartComponent, const css::uno::Reference< css::table::XTableChart >& _xTableChart ); // Non-interface - css::uno::Reference< css::beans::XPropertySet > xDiagramPropertySet() const { return mxDiagramPropertySet; } + const css::uno::Reference< css::beans::XPropertySet >& xDiagramPropertySet() const { return mxDiagramPropertySet; } bool is3D() throw ( css::uno::RuntimeException ); css::uno::Reference< css::beans::XPropertySet > getAxisPropertySet(sal_Int32 _nAxisType, sal_Int32 _nAxisGroup) throw ( css::script::BasicErrorException, css::uno::RuntimeException ); // Methods |