summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/DomainMapperTableHandler.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-12 10:34:46 +0200
committerNoel Grandin <noel@peralex.com>2016-04-12 11:25:18 +0200
commitc473472fc03dc71f237caeb36395ce155121288a (patch)
treedece960982bf20ffc6ae2688a237b4b933a9292b /writerfilter/source/dmapper/DomainMapperTableHandler.hxx
parent8dcb7cf2a55bd0bf6ebbd89e2b91a078e6623996 (diff)
clang-tidy performance-unnecessary-value-param in writerfilter
Change-Id: I1f61be80ac1ebe42668580b09a261e7e3af1a403
Diffstat (limited to 'writerfilter/source/dmapper/DomainMapperTableHandler.hxx')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableHandler.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.hxx b/writerfilter/source/dmapper/DomainMapperTableHandler.hxx
index f661af8a4cd8..b1ac2f1df701 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.hxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.hxx
@@ -92,7 +92,7 @@ public:
@param nDepth depth of the table in surrounding table hierarchy
@param pProps properties of the table
*/
- void startTable(unsigned int nDepth, TablePropertyMapPtr pProps);
+ void startTable(unsigned int nDepth, const TablePropertyMapPtr& pProps);
/// Handle end of table.
void endTable(unsigned int nestedTableLevel);
/**
@@ -100,7 +100,7 @@ public:
@param pProps properties of the row
*/
- void startRow(TablePropertyMapPtr pProps);
+ void startRow(const TablePropertyMapPtr& pProps);
/// Handle end of row.
void endRow();
/**
@@ -109,7 +109,7 @@ public:
@param rT start handle of the cell
@param pProps properties of the cell
*/
- void startCell(const css::uno::Reference< css::text::XTextRange > & start, TablePropertyMapPtr pProps);
+ void startCell(const css::uno::Reference< css::text::XTextRange > & start, const TablePropertyMapPtr& pProps);
/**
Handle end of cell.