summaryrefslogtreecommitdiff
path: root/oox
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-08-07 21:28:30 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-08-08 09:14:52 +0200
commita3c695c12386c2708a0c06ec0ccd42ee2b8aeb98 (patch)
treed15d4f7fd0176fa514e3863b73d05c9367b3142e /oox
parent05aa784ed9891a1299f8c2328faee9c62050851a (diff)
tdf#110440 drawingML import: fix handling of group shape properties
The handler for nvGrpSpPr is "this class", not "no class". Change-Id: I7fc40681d77f94b7473d2f677d813d2ae246f6ac Reviewed-on: https://gerrit.libreoffice.org/40854 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'oox')
-rw-r--r--oox/source/drawingml/shapegroupcontext.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/oox/source/drawingml/shapegroupcontext.cxx b/oox/source/drawingml/shapegroupcontext.cxx
index dae4ea67045a..7f10ec32a503 100644
--- a/oox/source/drawingml/shapegroupcontext.cxx
+++ b/oox/source/drawingml/shapegroupcontext.cxx
@@ -79,7 +79,7 @@ ContextHandlerRef ShapeGroupContext::onCreateContext( sal_Int32 aElementToken, c
case XML_grpSpPr:
return new ShapePropertiesContext( *this, *mpGroupShapePtr );
case XML_nvGrpSpPr:
- return nullptr;
+ return this;
case XML_spPr:
return new ShapePropertiesContext( *this, *mpGroupShapePtr );
/*