[Libreoffice-commits] core.git: writerfilter/source
Michael Stahl
mstahl at redhat.com
Mon Nov 25 13:39:16 PST 2013
writerfilter/source/dmapper/DomainMapperTableHandler.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 6e98b8e35d5237eee04419ddd9b42c75d56af180
Author: Michael Stahl <mstahl at redhat.com>
Date: Mon Nov 25 22:35:27 2013 +0100
writerfilter: std::map::erase(const_iterator) is C++11 only
Change-Id: I3959fe8341b053116e8c3d898da02c82f4118203
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 1a9ad2d..a098472 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);
More information about the Libreoffice-commits
mailing list