Merge remote-tracking branch 'origin/release/v7.3.0' into develop

This commit is contained in:
Elena Subbotina
2022-12-30 12:15:42 +03:00
16 changed files with 934 additions and 869 deletions

View File

@ -950,6 +950,27 @@ namespace OOX
*pPt = oReader;
m_arrItems.push_back(pPt);
}
else if (L"mc:AlternateContent" == sName)
{
int nCurDepth = oReader.GetDepth();
while (oReader.ReadNextSiblingNode(nCurDepth))
{
std::wstring strName = oReader.GetName();
if (oReader.IsEmptyNode())
continue;
if (strName == L"mc:Choice")
{
fromXML(oReader);
break;
}
else if (strName == L"mc:Fallback")
{
fromXML(oReader);
}
}
}
}
}