summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAron Budea <aron.budea@collabora.com>2018-02-18 23:04:09 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-02-20 00:06:53 +0100
commit26b51c9550ef300e7685fc41eb9cde4dbbc11265 (patch)
tree5215c46c9312327b4e7f133e1298bd3e149bcfd0
parent121fda77b0cc16d54607a1f5f7b26c0f1050284f (diff)
for listeners the range needs to be set before the formula, tdf#115530
Change-Id: I001795fd456375c4babab2c2e505bedff03e991f Reviewed-on: https://gerrit.libreoffice.org/49957 Reviewed-by: Aron Budea <aron.budea@collabora.com> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
-rw-r--r--sc/source/filter/oox/condformatbuffer.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/condformatbuffer.cxx b/sc/source/filter/oox/condformatbuffer.cxx
index 3a46a3b28fa6..55a57a4c710b 100644
--- a/sc/source/filter/oox/condformatbuffer.cxx
+++ b/sc/source/filter/oox/condformatbuffer.cxx
@@ -1055,12 +1055,12 @@ void CondFormat::finalizeImport()
if ( !mbReadyForFinalize )
return;
ScDocument& rDoc = getScDocument();
+ mpFormat->SetRange(maModel.maRanges);
maRules.forEachMem( &CondFormatRule::finalizeImport );
SCTAB nTab = maModel.maRanges.GetTopLeftCorner().Tab();
sal_Int32 nIndex = getScDocument().AddCondFormat(mpFormat, nTab);
rDoc.AddCondFormatData( maModel.maRanges, nTab, nIndex );
- mpFormat->SetRange(maModel.maRanges);
}
CondFormatRuleRef CondFormat::createRule()