mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-13 20:23:37 +08:00
21 lines
422 B
C++
21 lines
422 B
C++
#pragma once
|
|
#include "stdafx.h"
|
|
#include "..\ElementsContainer.h"
|
|
|
|
void CShape::SetProperties(CProperties* pProperties, CElementsContainer* pSlide)
|
|
{
|
|
#ifdef PPT_DEF
|
|
|
|
if (NSBaseShape::ppt == m_pShape->GetClassType())
|
|
{
|
|
CPPTShape* pPPTShape = dynamic_cast<CPPTShape*>(m_pShape);
|
|
if (NULL != pPPTShape)
|
|
{
|
|
pPPTShape->SetProperties(pProperties, pSlide, this);
|
|
}
|
|
}
|
|
|
|
#endif
|
|
ReCalculate();
|
|
}
|