mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
linux build
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58935 954022d7-b5bf-4e40-9824-e11837661b57
This commit is contained in:
committed by
Alexander Trofimov
parent
b0d6a6945a
commit
cea85c5048
@ -64,7 +64,7 @@ namespace PPTX
|
||||
template<class T> AVSINLINE T& as() { return m_Bullet.as<T>(); }
|
||||
template<class T> AVSINLINE const T& as() const { return m_Bullet.as<T>(); }
|
||||
|
||||
virtual CString Bullet::toXML()const
|
||||
virtual CString toXML()const
|
||||
{
|
||||
if (m_Bullet.IsInit())
|
||||
return m_Bullet->toXML();
|
||||
@ -159,4 +159,4 @@ namespace PPTX
|
||||
} // namespace Logic
|
||||
} // namespace PPTX
|
||||
|
||||
#endif // PPTX_LOGIC_BULLET_INCLUDE_H
|
||||
#endif // PPTX_LOGIC_BULLET_INCLUDE_H
|
||||
|
||||
@ -48,14 +48,14 @@ namespace PPTX
|
||||
pWriter->EndNode(_T("a:prstClr"));
|
||||
}
|
||||
|
||||
virtual DWORD PrstClr::GetRGBA(DWORD RGBA) const
|
||||
virtual DWORD GetRGBA(DWORD RGBA) const
|
||||
{
|
||||
PrstClr* pColor = const_cast<PrstClr*>(this);
|
||||
pColor->FillRGBFromVal();
|
||||
return ColorBase::GetRGBA(RGBA);
|
||||
}
|
||||
|
||||
virtual DWORD PrstClr::GetARGB(DWORD ARGB) const
|
||||
virtual DWORD GetARGB(DWORD ARGB) const
|
||||
{
|
||||
PrstClr* pColor = const_cast<PrstClr*>(this);
|
||||
pColor->FillRGBFromVal();
|
||||
@ -356,4 +356,4 @@ namespace PPTX
|
||||
} // namespace Logic
|
||||
} // namespace PPTX
|
||||
|
||||
#endif // PPTX_LOGIC_PRSTCLR_INCLUDE_H
|
||||
#endif // PPTX_LOGIC_PRSTCLR_INCLUDE_H
|
||||
|
||||
@ -97,7 +97,7 @@ namespace PPTX
|
||||
nullable<Reflection> reflection;
|
||||
nullable<SoftEdge> softEdge;
|
||||
protected:
|
||||
virtual void EffectLst::FillParentPointersForChilds()
|
||||
virtual void FillParentPointersForChilds()
|
||||
{
|
||||
if(blur.IsInit())
|
||||
blur->SetParentPointer(this);
|
||||
|
||||
@ -62,7 +62,7 @@ namespace PPTX
|
||||
UniFill Fill;
|
||||
Limit::BlendMode blend;
|
||||
protected:
|
||||
virtual void FillOverlay::FillParentPointersForChilds()
|
||||
virtual void FillParentPointersForChilds()
|
||||
{
|
||||
Fill.SetParentPointer(this);
|
||||
}
|
||||
@ -70,4 +70,4 @@ namespace PPTX
|
||||
} // namespace Logic
|
||||
} // namespace PPTX
|
||||
|
||||
#endif // PPTX_LOGIC_FILLOVERLAY_INCLUDE_H_
|
||||
#endif // PPTX_LOGIC_FILLOVERLAY_INCLUDE_H_
|
||||
|
||||
@ -30,7 +30,7 @@ namespace PPTX
|
||||
}
|
||||
|
||||
public:
|
||||
virtual void NvCxnSpPr::fromXML(XmlUtils::CXmlNode& node)
|
||||
virtual void fromXML(XmlUtils::CXmlNode& node)
|
||||
{
|
||||
cNvPr = node.ReadNode(_T("p:cNvPr"));
|
||||
cNvCxnSpPr = node.ReadNode(_T("p:cNvCxnSpPr"));
|
||||
@ -39,7 +39,7 @@ namespace PPTX
|
||||
FillParentPointersForChilds();
|
||||
}
|
||||
|
||||
virtual CString NvCxnSpPr::toXML() const
|
||||
virtual CString toXML() const
|
||||
{
|
||||
XmlUtils::CNodeValue oValue;
|
||||
oValue.Write(cNvPr);
|
||||
@ -114,4 +114,4 @@ namespace PPTX
|
||||
} // namespace Logic
|
||||
} // namespace PPTX
|
||||
|
||||
#endif // PPTX_LOGIC_NVCXNSPPR_INCLUDE_H
|
||||
#endif // PPTX_LOGIC_NVCXNSPPR_INCLUDE_H
|
||||
|
||||
@ -9,8 +9,8 @@ namespace NSGuidesVML
|
||||
{
|
||||
public:
|
||||
RulesType m_eRuler;
|
||||
CSimpleArray<POINT> m_arPoints;
|
||||
CSimpleArray<SPointType> m_arPointsType;
|
||||
std::vector<POINT> m_arPoints;
|
||||
std::vector<SPointType> m_arPointsType;
|
||||
|
||||
private:
|
||||
int m_nCountElementsPoint;
|
||||
@ -50,11 +50,11 @@ namespace NSGuidesVML
|
||||
class CConverterPPTXPPT
|
||||
{
|
||||
private:
|
||||
CSimpleArray<CSlice> m_arSlices;
|
||||
std::vector<CSlice> m_arSlices;
|
||||
CPPTShape* pPPTShape;
|
||||
std::map<CString, LONG> m_arMapFormula;
|
||||
std::map<CString, LONG> m_arMapAdj;
|
||||
CSimpleArray<CSlicePath> m_arSlicesPath;
|
||||
std::vector<CSlicePath> m_arSlicesPath;
|
||||
LONG m_lIndexDst;
|
||||
LONG m_lIndexAdj;
|
||||
SPointType pPointType1;
|
||||
|
||||
Reference in New Issue
Block a user