diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-09-01 13:57:52 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-09-01 14:48:50 -0400 |
commit | 309c766d99cc7efc11fc439d119ba1944f2d710a (patch) | |
tree | 38b0df248625639f1ef5afc3b5fb1dced8525da6 /sc/inc | |
parent | 16c8c46d85d7aafcb9159b12e2d44bc0bf322c69 (diff) |
Separate misspelled ranges when entering a new cell value.
And store them at appropriate locations.
Change-Id: Iaf38c0cd01e9b3dc9dc98f7ccc1951d572a422e9
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/spellcheckcontext.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/inc/spellcheckcontext.hxx b/sc/inc/spellcheckcontext.hxx index 5d81ad5b4601..e3f3f74f0af8 100644 --- a/sc/inc/spellcheckcontext.hxx +++ b/sc/inc/spellcheckcontext.hxx @@ -49,6 +49,7 @@ struct SpellCheckContext bool isMisspelled( SCCOL nCol, SCROW nRow ) const; const std::vector<editeng::MisspellRanges>* getMisspellRanges( SCCOL nCol, SCROW nRow ) const; + void setMisspellRanges( SCCOL nCol, SCROW nRow, const std::vector<editeng::MisspellRanges>* pRanges ); void reset(); }; |