This commit is contained in:
Elena Subbotina
2022-12-28 13:32:50 +03:00
parent 1cd73fd770
commit bc7aa9d328

View File

@ -948,6 +948,27 @@ namespace OOX
{
m_arrItems.push_back(new Diagram::CPt(oReader));
}
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);
}
}
}
}
}