diff options
author | Mathias Bauer <mba@openoffice.org> | 2010-10-21 15:10:42 +0200 |
---|---|---|
committer | Mathias Bauer <mba@openoffice.org> | 2010-10-21 15:10:42 +0200 |
commit | 76039bc52fe8ffba5349dcac5993e207e1f8d352 (patch) | |
tree | efc654447e5a08270b15d667a7c781c713ae4b1c /lingucomponent | |
parent | d56823f5788d273402134999518a3d336fac5774 (diff) | |
parent | 81876836fefde83479909875065d540f6c61143a (diff) |
CWS changehid: resync to m90
Notes
Notes:
split repo tag: components_ooo/DEV300_m91
Diffstat (limited to 'lingucomponent')
-rw-r--r--[-rwxr-xr-x] | lingucomponent/source/spellcheck/spell/sspellimp.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx b/lingucomponent/source/spellcheck/spell/sspellimp.cxx index 05ae1ab1a6e9..577d105afcde 100755..100644 --- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx +++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx @@ -376,6 +376,9 @@ sal_Bool SAL_CALL SpellChecker::isValid( const OUString& rWord, const Locale& rL return TRUE; #endif + // return FALSE to process SPELLML requests (they are longer than the header) + if (rWord.match(A2OU(SPELLML_HEADER), 0) && (rWord.getLength() > 10)) return FALSE; + // Get property values to be used. // These are be the default values set in the SN_LINGU_PROPERTIES // PropertySet which are overridden by the supplied ones from the |