mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
fix bug #65955
This commit is contained in:
@ -418,7 +418,7 @@ void OoxConverter::convert(PPTX::Logic::Pic *oox_picture)
|
||||
if (pVml)
|
||||
{
|
||||
std::wstring sShapeId = oox_picture->oleObject->m_sShapeId.get();
|
||||
boost::unordered_map<std::wstring, OOX::CVmlDrawing::_vml_shape>::iterator pFind = pVml->m_mapShapes.find(sShapeId);
|
||||
std::map<std::wstring, OOX::CVmlDrawing::_vml_shape>::iterator pFind = pVml->m_mapShapes.find(sShapeId);
|
||||
|
||||
if (pVml->m_mapShapes.end() != pFind)
|
||||
{
|
||||
|
||||
@ -611,7 +611,7 @@ void XlsxConverter::convert(OOX::Spreadsheet::CLegacyDrawingHFWorksheet *oox_bac
|
||||
|
||||
oox_current_child_document = dynamic_cast<OOX::IFileContainer*>(vmlDrawing.GetPointer());
|
||||
|
||||
for (boost::unordered_map<std::wstring, OOX::CVmlDrawing::_vml_shape>::iterator it = vmlDrawing->m_mapShapes.begin(); it!= vmlDrawing->m_mapShapes.end(); ++it)
|
||||
for (std::map<std::wstring, OOX::CVmlDrawing::_vml_shape>::iterator it = vmlDrawing->m_mapShapes.begin(); it!= vmlDrawing->m_mapShapes.end(); ++it)
|
||||
{
|
||||
OOX::Vml::CShape* pShape = dynamic_cast<OOX::Vml::CShape*>(it->second.pElement);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user