Kaydet (Commit) 4e1629ff authored tarafından Caolán McNamara's avatar Caolán McNamara

additional const_iterator in const method

Change-Id: I8cad958e1b6ba5eec000244a31e1ee98e0b5d123
üst 323f755d
......@@ -300,13 +300,13 @@ void SvXMLAutoStylePoolP_Impl::exportXML(
{
// Get list of parents for current family (nFamily)
XMLFamilyData_Impl aTmp( nFamily );
XMLFamilyDataList_Impl::iterator aFind = maFamilyList.find(aTmp);
XMLFamilyDataList_Impl::const_iterator aFind = maFamilyList.find(aTmp);
DBG_ASSERT( aFind != maFamilyList.end(),
"SvXMLAutoStylePool_Impl::exportXML: unknown family" );
if (aFind == maFamilyList.end())
return;
XMLFamilyData_Impl &rFamily = *aFind;
const XMLFamilyData_Impl &rFamily = *aFind;
sal_uInt32 nCount = rFamily.mnCount;
if (!nCount)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment