[bug] fix bug 80134

This commit is contained in:
Sergey Luzyanin
2026-02-16 21:48:55 +03:00
parent 87fed47de0
commit 4b97ac045f

View File

@ -5881,6 +5881,10 @@
return new ApiOleObject(drawing);
case AscDFH.historyitem_type_GroupShape:
return new ApiGroup(drawing);
case AscDFH.historyitem_type_GraphicFrame:
return new ApiTable(drawing);
case AscDFH.historyitem_type_SmartArt:
return new ApiSmartArt(drawing);
default:
return new ApiDrawing(drawing);
}