summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-11-25 22:35:27 +0100
committerMichael Stahl <mstahl@redhat.com>2013-11-25 22:36:09 +0100
commit6e98b8e35d5237eee04419ddd9b42c75d56af180 (patch)
tree1bd63e34986544bdae2cbb847726ae54adf587f1 /writerfilter
parent80a1fb03e3915acf670f27c755dcd2d6870fd782 (diff)
writerfilter: std::map::erase(const_iterator) is C++11 only
Change-Id: I3959fe8341b053116e8c3d898da02c82f4118203
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableHandler.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 1a9ad2d063dc..a098472aff72 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -763,7 +763,7 @@ RowPropertyValuesSeq_t DomainMapperTableHandler::endTableGetRowProperties()
if( aRowIter->get()->find(PROP_IS_SPLIT_ALLOWED) == aRowIter->get()->end())
aRowIter->get()->Insert( PROP_IS_SPLIT_ALLOWED, uno::makeAny(sal_True ) );
// tblHeader is only our property, remove before the property map hits UNO
- PropertyMap::const_iterator aIter = aRowIter->get()->find(PROP_TBL_HEADER);
+ PropertyMap::iterator const aIter = aRowIter->get()->find(PROP_TBL_HEADER);
if (aIter != aRowIter->get()->end())
aRowIter->get()->erase(aIter);