Commit cea85c50 authored by Ivan.Shulga's avatar Ivan.Shulga Committed by Alexander Trofimov

linux build

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@58935 954022d7-b5bf-4e40-9824-e11837661b57
parent b0d6a694
...@@ -64,7 +64,7 @@ namespace PPTX ...@@ -64,7 +64,7 @@ namespace PPTX
template<class T> AVSINLINE T& as() { return m_Bullet.as<T>(); } template<class T> AVSINLINE T& as() { return m_Bullet.as<T>(); }
template<class T> AVSINLINE const T& as() const { 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()) if (m_Bullet.IsInit())
return m_Bullet->toXML(); return m_Bullet->toXML();
......
...@@ -48,14 +48,14 @@ namespace PPTX ...@@ -48,14 +48,14 @@ namespace PPTX
pWriter->EndNode(_T("a:prstClr")); pWriter->EndNode(_T("a:prstClr"));
} }
virtual DWORD PrstClr::GetRGBA(DWORD RGBA) const virtual DWORD GetRGBA(DWORD RGBA) const
{ {
PrstClr* pColor = const_cast<PrstClr*>(this); PrstClr* pColor = const_cast<PrstClr*>(this);
pColor->FillRGBFromVal(); pColor->FillRGBFromVal();
return ColorBase::GetRGBA(RGBA); return ColorBase::GetRGBA(RGBA);
} }
virtual DWORD PrstClr::GetARGB(DWORD ARGB) const virtual DWORD GetARGB(DWORD ARGB) const
{ {
PrstClr* pColor = const_cast<PrstClr*>(this); PrstClr* pColor = const_cast<PrstClr*>(this);
pColor->FillRGBFromVal(); pColor->FillRGBFromVal();
......
...@@ -97,7 +97,7 @@ namespace PPTX ...@@ -97,7 +97,7 @@ namespace PPTX
nullable<Reflection> reflection; nullable<Reflection> reflection;
nullable<SoftEdge> softEdge; nullable<SoftEdge> softEdge;
protected: protected:
virtual void EffectLst::FillParentPointersForChilds() virtual void FillParentPointersForChilds()
{ {
if(blur.IsInit()) if(blur.IsInit())
blur->SetParentPointer(this); blur->SetParentPointer(this);
......
...@@ -62,7 +62,7 @@ namespace PPTX ...@@ -62,7 +62,7 @@ namespace PPTX
UniFill Fill; UniFill Fill;
Limit::BlendMode blend; Limit::BlendMode blend;
protected: protected:
virtual void FillOverlay::FillParentPointersForChilds() virtual void FillParentPointersForChilds()
{ {
Fill.SetParentPointer(this); Fill.SetParentPointer(this);
} }
......
...@@ -30,7 +30,7 @@ namespace PPTX ...@@ -30,7 +30,7 @@ namespace PPTX
} }
public: public:
virtual void NvCxnSpPr::fromXML(XmlUtils::CXmlNode& node) virtual void fromXML(XmlUtils::CXmlNode& node)
{ {
cNvPr = node.ReadNode(_T("p:cNvPr")); cNvPr = node.ReadNode(_T("p:cNvPr"));
cNvCxnSpPr = node.ReadNode(_T("p:cNvCxnSpPr")); cNvCxnSpPr = node.ReadNode(_T("p:cNvCxnSpPr"));
...@@ -39,7 +39,7 @@ namespace PPTX ...@@ -39,7 +39,7 @@ namespace PPTX
FillParentPointersForChilds(); FillParentPointersForChilds();
} }
virtual CString NvCxnSpPr::toXML() const virtual CString toXML() const
{ {
XmlUtils::CNodeValue oValue; XmlUtils::CNodeValue oValue;
oValue.Write(cNvPr); oValue.Write(cNvPr);
......
...@@ -9,8 +9,8 @@ namespace NSGuidesVML ...@@ -9,8 +9,8 @@ namespace NSGuidesVML
{ {
public: public:
RulesType m_eRuler; RulesType m_eRuler;
CSimpleArray<POINT> m_arPoints; std::vector<POINT> m_arPoints;
CSimpleArray<SPointType> m_arPointsType; std::vector<SPointType> m_arPointsType;
private: private:
int m_nCountElementsPoint; int m_nCountElementsPoint;
...@@ -50,11 +50,11 @@ namespace NSGuidesVML ...@@ -50,11 +50,11 @@ namespace NSGuidesVML
class CConverterPPTXPPT class CConverterPPTXPPT
{ {
private: private:
CSimpleArray<CSlice> m_arSlices; std::vector<CSlice> m_arSlices;
CPPTShape* pPPTShape; CPPTShape* pPPTShape;
std::map<CString, LONG> m_arMapFormula; std::map<CString, LONG> m_arMapFormula;
std::map<CString, LONG> m_arMapAdj; std::map<CString, LONG> m_arMapAdj;
CSimpleArray<CSlicePath> m_arSlicesPath; std::vector<CSlicePath> m_arSlicesPath;
LONG m_lIndexDst; LONG m_lIndexDst;
LONG m_lIndexAdj; LONG m_lIndexAdj;
SPointType pPointType1; SPointType pPointType1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment