tdf#103602 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@cib.de>
(cherry picked from commit dd7caf3cfd3de636c8bf37c8347c1b72b3772aeb)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101041
Reviewed-by: Thorsten Behrens <Thorsten.Behrens@CIB.de>
diff --git a/xmloff/source/style/PageMasterExportPropMapper.cxx b/xmloff/source/style/PageMasterExportPropMapper.cxx
index 9c20a6a..a0443a5 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-properteis 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))
        {