diff options
Diffstat (limited to 'sc/inc/segmenttree.hxx')
-rw-r--r-- | sc/inc/segmenttree.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sc/inc/segmenttree.hxx b/sc/inc/segmenttree.hxx index 58e59e60cd84..7e25d232a03f 100644 --- a/sc/inc/segmenttree.hxx +++ b/sc/inc/segmenttree.hxx @@ -77,6 +77,9 @@ public: SCROW findLastTrue() const; + // Builds internal data (so that it doesn't build them while used in threads). + void makeReady(); + OString dumpAsString(); private: @@ -102,6 +105,9 @@ public: void removeSegment(SCCOL nCol1, SCCOL nCol2); void insertSegment(SCCOL nCol, SCCOL nSize); + // Builds internal data (so that it doesn't build them while used in threads). + void makeReady(); + OString dumpAsString(); private: @@ -153,6 +159,9 @@ public: void enableTreeSearch(bool bEnable); + // Builds internal data (so that it doesn't build them while used in threads). + void makeReady(); + OString dumpAsString(); private: |