diff options
author | Oliver Specht <oliver.specht@cib.de> | 2015-11-12 16:24:51 +0100 |
---|---|---|
committer | Oliver Specht <oliver.specht@cib.de> | 2015-11-13 07:00:36 +0000 |
commit | 249f8b1cc9897ac9666dd5c69dc22fae7586c207 (patch) | |
tree | 002b804b7896f0f2eb446a5d95b8539c3a1627b4 /xmloff | |
parent | 6105812d67ce5369ff3a1b9690f2bc333a17e44d (diff) |
tdf#95744: saving shape names re-enabled
commit c29657e0d6bb707345584ac7a7f5ae5016f37297 inverted
one of the tests for SvXMLExportFlags::OASIS
Change-Id: I523cecd4203c91d82a4e3e82b8457d2c55a5fff0
Reviewed-on: https://gerrit.libreoffice.org/19931
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/shapeexport.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 705c64f3bb3d..d98b12bab154 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -661,7 +661,7 @@ void XMLShapeExport::exportShape(const uno::Reference< drawing::XShape >& xShape if ( ( GetExport().GetModelType() != SvtModuleOptions::EFactory::WRITER && GetExport().GetModelType() != SvtModuleOptions::EFactory::WRITERWEB && GetExport().GetModelType() != SvtModuleOptions::EFactory::WRITERGLOBAL ) || - !( GetExport().getExportFlags() & SvXMLExportFlags::OASIS ) || + ( GetExport().getExportFlags() & SvXMLExportFlags::OASIS ) || aShapeInfo.meShapeType == XmlShapeTypeDrawGroupShape || ( aShapeInfo.meShapeType == XmlShapeTypeDrawCustomShape && aShapeInfo.xCustomShapeReplacement.is() ) ) |