Commit 0aa3abe6 authored by Elen.Subbotina's avatar Elen.Subbotina Committed by Alexander Trofimov
parent d3a0b5e9
......@@ -437,6 +437,11 @@ namespace PPTX
{
tableStyles = theme->presentation->get(PPTX::FileTypes::TableStyles).smart_dynamic_cast<PPTX::TableStyles>();
}
if (exist(PPTX::FileTypes::VmlDrawing))
{
Vml = FileContainer::get(PPTX::FileTypes::VmlDrawing).smart_dynamic_cast<PPTX::VmlDrawing>();//boost::shared_dynamic_cast<PPTX::VmlDrawing, PPTX::File>(FileContainer::get(PPTX::FileTypes::VmlDrawing));
Vml->FillRIds();
}
}
const OOX::CPath GetPathBySpid(const CString& spid)const
{
......
......@@ -477,6 +477,12 @@ namespace PPTX
theme->SetColorMap(clrMap);
//Theme->Master.reset((PPTX::WrapperFile*)this);
tableStyles = (theme->presentation->get(PPTX::FileTypes::TableStyles)).smart_dynamic_cast<PPTX::TableStyles>();
if (exist(PPTX::FileTypes::VmlDrawing))
{
Vml = FileContainer::get(PPTX::FileTypes::VmlDrawing).smart_dynamic_cast<PPTX::VmlDrawing>();//boost::shared_dynamic_cast<PPTX::VmlDrawing, PPTX::File>(FileContainer::get(PPTX::FileTypes::VmlDrawing));
Vml->FillRIds();
}
}
const OOX::CPath GetPathBySpid(const CString& spid)const
{
......
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