[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - sc/source
Kohei Yoshida
kohei.yoshida at collabora.com
Wed Nov 27 20:29:20 PST 2013
sc/source/core/data/document.cxx | 4 ++++
1 file changed, 4 insertions(+)
New commits:
commit 7f51deb9d637b0eeac8c0f3075a40312ab69d3fd
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Wed Nov 27 23:29:39 2013 -0500
Clear the cache here too.
Change-Id: I4dcc7244e508fcdf484b73dc843b21f4b0a18a73
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 2fa2b0e..8048d02 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -3583,6 +3583,8 @@ void ScDocument::InterpretDirtyCells( const ScRangeList& rRanges )
if (!GetAutoCalc())
return;
+ mpFormulaGroupCxt.reset();
+
for (size_t nPos=0, nRangeCount = rRanges.size(); nPos < nRangeCount; nPos++)
{
const ScRange& rRange = *rRanges[nPos];
@@ -3596,6 +3598,8 @@ void ScDocument::InterpretDirtyCells( const ScRangeList& rRanges )
rRange.aStart.Col(), rRange.aStart.Row(), rRange.aEnd.Col(), rRange.aEnd.Row());
}
}
+
+ mpFormulaGroupCxt.reset();
}
More information about the Libreoffice-commits
mailing list