summaryrefslogtreecommitdiff
path: root/sc/source/core/data/table1.cxx
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-08-22 14:26:29 +0300
committerDennis Francis <dennis.francis@collabora.co.uk>2017-11-21 16:09:40 +0530
commit12d70f4a89f5586f1b617c052b9573f706030d17 (patch)
tree5a6409d061677074155adcd7bd585dfed0b2f938 /sc/source/core/data/table1.cxx
parent6d94519008580975608f852f4adee50ec099a6ad (diff)
Move formula tree manipulation out of multi-threaded parts of code
Change-Id: I2f7e6fb747b6a74172a81f9db9bc210ef6a27342
Diffstat (limited to 'sc/source/core/data/table1.cxx')
-rw-r--r--sc/source/core/data/table1.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/sc/source/core/data/table1.cxx b/sc/source/core/data/table1.cxx
index fdafbbc6c1f8..961b2f443568 100644
--- a/sc/source/core/data/table1.cxx
+++ b/sc/source/core/data/table1.cxx
@@ -2346,6 +2346,13 @@ void ScTable::CalculateInColumnInThread( SCCOL nCol, SCROW nRow, size_t nLen, un
aCol[nCol].CalculateInThread( nRow, nLen, nThisThread, nThreadsTotal );
}
+void ScTable::HandleStuffAfterParallelCalculation( SCCOL nCol, SCROW nRow, size_t nLen)
+{
+ assert(ValidCol(nCol));
+
+ aCol[nCol].HandleStuffAfterParallelCalculation( nRow, nLen );
+}
+
#if DUMP_COLUMN_STORAGE
void ScTable::DumpColumnStorage( SCCOL nCol ) const
{