mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
update external
This commit is contained in:
@ -1272,11 +1272,11 @@ namespace Spreadsheet
|
||||
|
||||
for (size_t i = 0; (oExtLst.IsInit()) && (i < oExtLst->m_arrExt.size()); i++)
|
||||
{
|
||||
if (oExtLst->m_arrExt[i]->m_oFileId.IsInit() ||
|
||||
oExtLst->m_arrExt[i]->m_oPortalName.IsInit())
|
||||
if (oExtLst->m_arrExt[i]->m_oFileKey.IsInit() ||
|
||||
oExtLst->m_arrExt[i]->m_oInstanceId.IsInit())
|
||||
{
|
||||
m_oFileId = oExtLst->m_arrExt[i]->m_oFileId;
|
||||
m_oPortalName = oExtLst->m_arrExt[i]->m_oPortalName;
|
||||
m_oFileKey = oExtLst->m_arrExt[i]->m_oFileKey;
|
||||
m_oInstanceId = oExtLst->m_arrExt[i]->m_oInstanceId;
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -1304,11 +1304,11 @@ namespace Spreadsheet
|
||||
{
|
||||
m_oDdeLink->toXML(sXml);
|
||||
}
|
||||
if (m_oFileId.IsInit() || m_oPortalName.IsInit())
|
||||
if (m_oFileKey.IsInit() || m_oInstanceId.IsInit())
|
||||
{
|
||||
OOX::Drawing::COfficeArtExtension oExt;
|
||||
oExt.m_oFileId = m_oFileId;
|
||||
oExt.m_oPortalName = m_oPortalName;
|
||||
oExt.m_oFileKey = m_oFileKey;
|
||||
oExt.m_oInstanceId = m_oInstanceId;
|
||||
|
||||
oExt.m_sUri = L"{C3750BE0-5CA9-4D1C-82C7-79D762991C26}";
|
||||
|
||||
|
||||
@ -561,8 +561,8 @@ namespace OOX
|
||||
nullable<COleLink> m_oOleLink;
|
||||
nullable<CDdeLink> m_oDdeLink;
|
||||
|
||||
nullable_string m_oFileId;
|
||||
nullable_string m_oPortalName;
|
||||
nullable_string m_oFileKey;
|
||||
nullable_string m_oInstanceId;
|
||||
private:
|
||||
CPath m_oReadPath;
|
||||
std::wstring m_rId;
|
||||
|
||||
Reference in New Issue
Block a user