diff options
author | Daniel Rentz [dr] <daniel.rentz@oracle.com> | 2010-10-21 15:42:15 +0200 |
---|---|---|
committer | Daniel Rentz [dr] <daniel.rentz@oracle.com> | 2010-10-21 15:42:15 +0200 |
commit | 1f77e4b60e27cf20837579d512d1df7b40d65db7 (patch) | |
tree | 09d899ee8abbb468097e414ffdda975972b47ea7 /oox/source/drawingml/shape.cxx | |
parent | a7f8ec5c50b16afcaa616baf28f6edb74b535285 (diff) |
dr77: fix broken import of charts and group shapes
Diffstat (limited to 'oox/source/drawingml/shape.cxx')
-rw-r--r-- | oox/source/drawingml/shape.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/shape.cxx b/oox/source/drawingml/shape.cxx index d3a6afb0d4ad..4d98de51a002 100644 --- a/oox/source/drawingml/shape.cxx +++ b/oox/source/drawingml/shape.cxx @@ -125,7 +125,7 @@ ChartShapeInfo& Shape::setChartType( bool bEmbedShapes ) { OSL_ENSURE( meFrameType == FRAMETYPE_GENERIC, "Shape::setChartType - multiple frame types" ); meFrameType = FRAMETYPE_CHART; - msServiceName = CREATE_OUSTRING( "com.sun.star.drawing.OLE2Object" ); + msServiceName = CREATE_OUSTRING( "com.sun.star.drawing.OLE2Shape" ); mxChartShapeInfo.reset( new ChartShapeInfo( bEmbedShapes ) ); return *mxChartShapeInfo; } |