[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - sc/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Mon May 4 09:25:32 UTC 2020


 sc/source/filter/excel/xestyle.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit c8a4fa577e5daec6520a810b4df753a67d9dd5a8
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sun May 3 16:43:06 2020 +0100
Commit:     Michael Stahl <michael.stahl at cib.de>
CommitDate: Mon May 4 11:24:59 2020 +0200

    Resolves: tdf#130108 ensure we don't reuse the last SetSearchMask setting
    
    Change-Id: Iddc4438b8bd30576be4531d47b6be0ac70847a9c
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93366
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.stahl at cib.de>

diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx
index 7b6a3b5a5665..32078b75d3c1 100644
--- a/sc/source/filter/excel/xestyle.cxx
+++ b/sc/source/filter/excel/xestyle.cxx
@@ -3031,7 +3031,7 @@ XclExpDxfs::XclExpDxfs( const XclExpRoot& rRoot )
 
                     if (maStyleNameToDxfId.emplace(aStyleName, nIndex).second)
                     {
-                        SfxStyleSheetBase* pStyle = rRoot.GetDoc().GetStyleSheetPool()->Find(aStyleName);
+                        SfxStyleSheetBase* pStyle = rRoot.GetDoc().GetStyleSheetPool()->Find(aStyleName, SfxStyleFamily::Para);
                         if(!pStyle)
                             continue;
 


More information about the Libreoffice-commits mailing list