Compare commits

...

1 Commits

Author SHA1 Message Date
ae29cebe35 . 2017-04-14 15:26:29 +03:00
4 changed files with 6 additions and 2 deletions

View File

@ -5264,7 +5264,7 @@ void CDrawingConverter::Clear()
}
m_mapShapeTypes.clear();
}
void CDrawingConverter::SetRels(smart_ptr<OOX::IFileContainer> &container)
void CDrawingConverter::SetRels(smart_ptr<OOX::IFileContainer> container)
{
*m_pBinaryWriter->m_pCurrentContainer = container;
}

View File

@ -211,7 +211,7 @@ namespace NSBinPptxRW
~CDrawingConverter();
void SetRels(OOX::IFileContainer *container);
void SetRels(smart_ptr<OOX::IFileContainer> & container);
void SetRels(smart_ptr<OOX::IFileContainer> container);
smart_ptr<OOX::IFileContainer> GetRels();
HRESULT SetMainDocument (BinDocxRW::CDocxSerializer* pDocument);

View File

@ -418,6 +418,8 @@ namespace PPTX
smart_ptr<PPTX::Logic::SpTree> oSpTree = m_elem.smart_dynamic_cast<PPTX::Logic::SpTree>();
if (oSpTree.IsInit()) oSpTree->toXmlWriterVML(pWriter, oTheme, oClrMap);
}break;
default:
break;
}
}

View File

@ -3425,6 +3425,8 @@ namespace BinXlsxRW
WriteIconSet(*pIconSet);
m_oBcw.WriteItemEnd(nCurPos);
break;
default:
break;
}
}
}