diff options
-rw-r--r-- | oox/source/drawingml/chart/chartspaceconverter.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/oox/source/drawingml/chart/chartspaceconverter.cxx b/oox/source/drawingml/chart/chartspaceconverter.cxx index f9b370e04d8f..9280d42ff25c 100644 --- a/oox/source/drawingml/chart/chartspaceconverter.cxx +++ b/oox/source/drawingml/chart/chartspaceconverter.cxx @@ -191,7 +191,8 @@ void ChartSpaceConverter::convertFromModel( const Reference< XShapes >& rxExtern && mrModel.mxTitle->mxTextProp.is() && mrModel.mxTitle->mxTextProp->isEmpty(); // Also for tdf#146487 - bool bEmptyRichText = mrModel.mxTitle->mxText.is() + bool bEmptyRichText = mrModel.mxTitle + && mrModel.mxTitle->mxText.is() && mrModel.mxTitle->mxText->mxTextBody.is() && mrModel.mxTitle->mxText->mxTextBody->isEmpty(); |