summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/TableData.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-04-13 15:40:11 +0200
committerNoel Grandin <noel@peralex.com>2016-04-14 09:21:41 +0200
commit29a4b74caca601d10c15d58aa5df5166ec3e517c (patch)
treea1de2f734fa47a4d0560c01f6273f679240405e5 /writerfilter/source/dmapper/TableData.hxx
parentf6ea0b2eb44073baf1445dc8e62fc8a245e5d378 (diff)
loplugin:passstuffbyref in writerfilter
Change-Id: Ia85f5a7a9846802de7a1495e70d16c9e3418dc3e
Diffstat (limited to 'writerfilter/source/dmapper/TableData.hxx')
-rw-r--r--writerfilter/source/dmapper/TableData.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/writerfilter/source/dmapper/TableData.hxx b/writerfilter/source/dmapper/TableData.hxx
index ff5f6aa7da11..84100cbb95f1 100644
--- a/writerfilter/source/dmapper/TableData.hxx
+++ b/writerfilter/source/dmapper/TableData.hxx
@@ -95,7 +95,7 @@ public:
/**
Return properties of the cell.
*/
- TablePropertyMapPtr getProperties() { return mpProps; }
+ const TablePropertyMapPtr& getProperties() { return mpProps; }
bool isOpen() const { return mbOpen; }
};
@@ -230,7 +230,7 @@ public:
/**
Return properties of the row.
*/
- TablePropertyMapPtr getProperties()
+ const TablePropertyMapPtr& getProperties()
{
return mpProperties;
}
@@ -362,7 +362,7 @@ public:
return mRows[i];
}
- const RowPointer_t getCurrentRow() const
+ const RowPointer_t& getCurrentRow() const
{
return mpRow;
}