diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2018-12-26 18:13:58 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2018-12-26 20:10:10 +0100 |
commit | 1141fc3247bf8cf901af3f9c0194cbb2621ff707 (patch) | |
tree | 3c9dd632b2b8bc89c13d6eb4ef381675f09a10d2 /xmloff | |
parent | 090f0e3094e8d6e485f275964133d8b1712c358d (diff) |
tdf#122335: sub-view-size can only be used with ODF ver > 1.2
Change-Id: I7dd767fddd11319017a215c240684dcc17238c4e
Reviewed-on: https://gerrit.libreoffice.org/65623
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/shapeexport.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/xmloff/source/draw/shapeexport.cxx b/xmloff/source/draw/shapeexport.cxx index 44f4f7051d98..6dce321f61fd 100644 --- a/xmloff/source/draw/shapeexport.cxx +++ b/xmloff/source/draw/shapeexport.cxx @@ -4571,6 +4571,11 @@ static void ImpExportEnhancedGeometry( SvXMLExport& rExport, const uno::Referenc { case EAS_SubViewSize: { + // export draw:display (do not export in ODF 1.2 or older) + if (rExport.getDefaultVersion() <= SvtSaveOptions::ODFVER_012) + { + continue; + } uno::Sequence< awt::Size > aSubViewSizes; rProp.Value >>= aSubViewSizes; |