[Libreoffice-commits] core.git: xmloff/source
Michael Stahl (via logerrit)
logerrit at kemper.freedesktop.org
Thu Aug 20 08:56:40 UTC 2020
xmloff/source/style/PageMasterExportPropMapper.cxx | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
New commits:
commit dd7caf3cfd3de636c8bf37c8347c1b72b3772aeb
Author: Michael Stahl <Michael.Stahl at cib.de>
AuthorDate: Wed Aug 19 18:12:01 2020 +0200
Commit: Michael Stahl <michael.stahl at cib.de>
CommitDate: Thu Aug 20 10:56:02 2020 +0200
xmloff: ODF export of page style: don't export draw:fill
... attributes on header-style and footer-style in strict ODF.
Change-Id: Ic1af26b6112a5afbb70a82b29dbacd3dcec14ec3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101012
Tested-by: Jenkins
Reviewed-by: Michael Stahl <michael.stahl at cib.de>
diff --git a/xmloff/source/style/PageMasterExportPropMapper.cxx b/xmloff/source/style/PageMasterExportPropMapper.cxx
index 965cdf650c86..2f1a5df943e4 100644
--- a/xmloff/source/style/PageMasterExportPropMapper.cxx
+++ b/xmloff/source/style/PageMasterExportPropMapper.cxx
@@ -350,7 +350,11 @@ void XMLPageMasterExportPropMapper::ContextFilter(
// tdf#103602 don't export draw:fill attributes on page-layout-properties in strict ODF
if (!isDrawingPageExport
- && aPropMapper->GetEntryAPIName(rProp.mnIndex).startsWith("Fill")
+ && [](OUString const& rName) -> bool {
+ return rName.startsWith("Fill")
+ || rName.startsWith("HeaderFill")
+ || rName.startsWith("FooterFill");
+ } (aPropMapper->GetEntryAPIName(rProp.mnIndex))
&& ((aBackgroundImageExport.GetExport().getSaneDefaultVersion()
& SvtSaveOptions::ODFSVER_EXTENDED) == 0))
{
More information about the Libreoffice-commits
mailing list