diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-12 15:23:28 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-12 19:46:29 -0400 |
commit | 2624788f23d265f0dfeda544f57b9d90a2ab2979 (patch) | |
tree | fe2885a75a7bfbde4936f9cac8df21412c0f0da0 /sc/inc | |
parent | 30503611efc30ac7a3b09744913f048bf28ef70a (diff) |
Do the splitting of formula groups.
Change-Id: I5a8661895b558b67abc19cdc39de9eb027bc1c34
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/sharedformula.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sc/inc/sharedformula.hxx b/sc/inc/sharedformula.hxx index 9423384faab3..0b49751e7bd8 100644 --- a/sc/inc/sharedformula.hxx +++ b/sc/inc/sharedformula.hxx @@ -63,7 +63,15 @@ public: */ static void splitFormulaCellGroup(const CellStoreType::position_type& aPos); - static void splitFormulaCellGroups(CellStoreType& rCells, const std::vector<SCROW>& rBounds); + /** + * Split existing shared formula ranges at specified row positions. + * + * @param rCells cell storage container + * @param rBounds row positions at which to split existing shared formula + * ranges. Note that this method will directly modify this + * parameter to sort and remove duplicates. + */ + static void splitFormulaCellGroups(CellStoreType& rCells, std::vector<SCROW>& rBounds); /** * See if two specified adjacent formula cells can be merged, and if they |