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 /oox/inc | |
parent | b9d091e7d4eb3014aa6198f64f414702105b5aab (diff) |
clang-tidy performance-unnecessary-value-param in oox
Change-Id: I1ac86906ea21c00f8d77834c94583be7d9e9974e
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/drawingml/chart/typegroupconverter.hxx | 2 | ||||
-rw-r--r-- | oox/inc/drawingml/table/tablecell.hxx | 2 | ||||
-rw-r--r-- | oox/inc/drawingml/table/tableproperties.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/oox/inc/drawingml/chart/typegroupconverter.hxx b/oox/inc/drawingml/chart/typegroupconverter.hxx index 694d97fed960..c4fb0543f7ec 100644 --- a/oox/inc/drawingml/chart/typegroupconverter.hxx +++ b/oox/inc/drawingml/chart/typegroupconverter.hxx @@ -153,7 +153,7 @@ public: /** Sets the passed OOXML marker style at the passed property set. */ void convertMarker( PropertySet& rPropSet, sal_Int32 nOoxSymbol, sal_Int32 nOoxSize, - ModelRef< Shape > xShapeProps ) const; + const ModelRef< Shape >& xShapeProps ) const; /** Sets the passed OOXML line smoothing at the passed property set. */ void convertLineSmooth( PropertySet& rPropSet, bool bOoxSmooth ) const; /** Sets the passed OOXML bar 3D geometry at the passed property set. */ diff --git a/oox/inc/drawingml/table/tablecell.hxx b/oox/inc/drawingml/table/tablecell.hxx index 5b7baf9928da..e936d0777cdc 100644 --- a/oox/inc/drawingml/table/tablecell.hxx +++ b/oox/inc/drawingml/table/tablecell.hxx @@ -73,7 +73,7 @@ public: oox::drawingml::TextBodyPtr getTextBody(){ return mpTextBody; }; void pushToXCell( const ::oox::core::XmlFilterBase& rFilterBase, - ::oox::drawingml::TextListStylePtr pMasterTextListStyle, + const ::oox::drawingml::TextListStylePtr& pMasterTextListStyle, const css::uno::Reference < css::table::XCell >& rxCell, const TableProperties& rTableProperties, const TableStyle& rTable, diff --git a/oox/inc/drawingml/table/tableproperties.hxx b/oox/inc/drawingml/table/tableproperties.hxx index 5f49be8e1d23..cf4d0cd2afcf 100644 --- a/oox/inc/drawingml/table/tableproperties.hxx +++ b/oox/inc/drawingml/table/tableproperties.hxx @@ -53,7 +53,7 @@ public: void pushToPropSet( const ::oox::core::XmlFilterBase& rFilterBase, const css::uno::Reference < css::beans::XPropertySet > & xPropSet, - ::oox::drawingml::TextListStylePtr pMasterTextListStyle ); + const ::oox::drawingml::TextListStylePtr& pMasterTextListStyle ); private: |