Commit c8a2a67a authored by Oleg.Korshul's avatar Oleg.Korshul Committed by Alexander Trofimov

(1.0.0.240) objectDefaults in theme

git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@57926 954022d7-b5bf-4e40-9824-e11837661b57
parent ae53a7f0
...@@ -64,15 +64,15 @@ namespace PPTX ...@@ -64,15 +64,15 @@ namespace PPTX
XmlUtils::CXmlNode oDefaults; XmlUtils::CXmlNode oDefaults;
if (oNode.GetNode(_T("a:objectDefaults"), oDefaults)) if (oNode.GetNode(_T("a:objectDefaults"), oDefaults))
{ {
spDef = oNode.ReadNode(_T("a:spDef")); spDef = oDefaults.ReadNode(_T("a:spDef"));
if (spDef.IsInit()) if (spDef.IsInit())
spDef->SetParentFilePointer(this); spDef->SetParentFilePointer(this);
lnDef = oNode.ReadNode(_T("a:lnDef")); lnDef = oDefaults.ReadNode(_T("a:lnDef"));
if (lnDef.IsInit()) if (lnDef.IsInit())
lnDef->SetParentFilePointer(this); lnDef->SetParentFilePointer(this);
txDef = oNode.ReadNode(_T("a:txDef")); txDef = oDefaults.ReadNode(_T("a:txDef"));
if (txDef.IsInit()) if (txDef.IsInit())
txDef->SetParentFilePointer(this); txDef->SetParentFilePointer(this);
} }
......
...@@ -2,6 +2,6 @@ ...@@ -2,6 +2,6 @@
//1 //1
//0 //0
//0 //0
//239 //240
#define INTVER 1,0,0,239 #define INTVER 1,0,0,240
#define STRVER "1,0,0,239\0" #define STRVER "1,0,0,240\0"
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