diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-05-03 16:43:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-05-03 20:07:48 +0200 |
commit | 454a3c945fdc02d706b0a5ad49ca13e0443fa8e5 (patch) | |
tree | b6765e460628ef0249babf17050ca6a55ab60587 /sc | |
parent | 18f9d47e8336909ae2814c921be56ed843a6979d (diff) |
Resolves: tdf#130108 ensure we don't reuse the last SetSearchMask setting
Change-Id: Iddc4438b8bd30576be4531d47b6be0ac70847a9c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/93350
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/xestyle.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/xestyle.cxx b/sc/source/filter/excel/xestyle.cxx index 5a6ed1d1ed7f..401a49ef8969 100644 --- a/sc/source/filter/excel/xestyle.cxx +++ b/sc/source/filter/excel/xestyle.cxx @@ -3044,7 +3044,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; |