summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2013-04-03 15:43:44 +0200
committerMichael Stahl <mstahl@redhat.com>2013-04-03 15:45:04 +0200
commitc2006fb823985c560404b0060ffe88810aa1d52f (patch)
tree38d83c51e17635f3c9062c1864117233772bf45b /writerfilter
parent1a61682bca23670a59e13ca6b46b27ca4a24e48d (diff)
writerfilter: fix silly init causing trivial STL assertion in test
(regression from 35b75ed510f49ff64cd86b38e228c2b5b9a9f3fc) Change-Id: I4342fd619f4d1f760b8fef2594a67b9fb7cd8f0e
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapperTableHandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
index 6a0609bc8ee8..495165bfe04f 100644
--- a/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
+++ b/writerfilter/source/dmapper/DomainMapperTableHandler.cxx
@@ -362,8 +362,8 @@ TableStyleSheetEntry * DomainMapperTableHandler::endTableGetTableStyle(TableInfo
}
}
- PropertyMap::iterator aTblLookIter =
- aTblLookIter = m_aTableProperties->find( PropertyDefinition( PROP_TBL_LOOK, false ) );
+ PropertyMap::iterator const aTblLookIter =
+ m_aTableProperties->find(PropertyDefinition(PROP_TBL_LOOK, false));
if(aTblLookIter != m_aTableProperties->end())
{
aTblLookIter->second >>= rInfo.nTblLook;