mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
[mobile] сборка конвертера
This commit is contained in:
@ -133,12 +133,12 @@ namespace PPTX
|
||||
oleObject.Init();
|
||||
node.ReadAttributeBase(L"progId", oleObject->m_sProgId);
|
||||
node.ReadAttributeBase(L"r:id", oleObject->m_oId);
|
||||
int imgW = node.GetAttributeInt(L"imgW", 0);
|
||||
int imgW = node.GetAttributeInt(CString(L"imgW"), 0);
|
||||
if(imgW > 0)
|
||||
{
|
||||
oleObject->m_oDxaOrig = Emu_To_Twips(imgW);
|
||||
}
|
||||
int imgH = node.GetAttributeInt(L"imgH", 0);
|
||||
int imgH = node.GetAttributeInt(CString(L"imgH"), 0);
|
||||
if(imgH > 0)
|
||||
{
|
||||
oleObject->m_oDyaOrig = Emu_To_Twips(imgH);
|
||||
|
||||
@ -158,8 +158,8 @@ namespace PPTX
|
||||
virtual void fromPPTY(NSBinPptxRW::CBinaryFileReader* pReader);
|
||||
virtual void FillParentPointersForChilds();
|
||||
bool isValid();
|
||||
CString COLEObject::GetFullOleName(const PPTX::RId& oRId, FileContainer* pRels)const;
|
||||
std::wstring COLEObject::GetOleData(const std::wstring& sFilePath)const;
|
||||
CString GetFullOleName(const PPTX::RId& oRId, FileContainer* pRels)const;
|
||||
std::wstring GetOleData(const std::wstring& sFilePath)const;
|
||||
|
||||
public:
|
||||
// Attributes
|
||||
|
||||
Reference in New Issue
Block a user