From f4ae7da07703de3a7636f00213fd01cb548682a0 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 15 Feb 2017 11:13:34 +0200 Subject: convert WorksheetType to scoped enum and drop unused MODULE enumerator Change-Id: I905c6366bbd84172675e51a3f441d9ea419e8150 --- sc/source/filter/oox/drawingfragment.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sc/source/filter/oox/drawingfragment.cxx') diff --git a/sc/source/filter/oox/drawingfragment.cxx b/sc/source/filter/oox/drawingfragment.cxx index 91a2e5008728..c3626c42ac83 100644 --- a/sc/source/filter/oox/drawingfragment.cxx +++ b/sc/source/filter/oox/drawingfragment.cxx @@ -156,7 +156,7 @@ GroupShapeContext::GroupShapeContext( ContextHandler2Helper& rParent, { ShapePtr xShape( new Shape( rHelper, rAttribs, "com.sun.star.drawing.GraphicObjectShape" ) ); if( pxShape ) *pxShape = xShape; - return new GraphicalObjectFrameContext( rParent, rxParentShape, xShape, rHelper.getSheetType() != SHEETTYPE_CHARTSHEET ); + return new GraphicalObjectFrameContext( rParent, rxParentShape, xShape, rHelper.getSheetType() != WorksheetType::Chart ); } case XDR_TOKEN( grpSp ): { -- cgit