diff options
author | Yossi Zahn <yossizahn@gmail.com> | 2016-11-28 13:01:40 +0000 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-01-19 15:40:57 +0000 |
commit | 42849da8f266972ef370104c332d74ff7b15fc71 (patch) | |
tree | 772dce91a7f54c1527c184ae5377730b41fa5fd2 /editeng | |
parent | 4d3b4a8ad12767c846b48c3a424e6bb0fa7af924 (diff) |
tdf#96354 correct broken autocorrect INitial CApitals
Change-Id: If65ec7814c3aed5e4c17294ae57c34550373469d
Reviewed-on: https://gerrit.libreoffice.org/31317
Reviewed-by: jan iversen <jani@documentfoundation.org>
Tested-by: jan iversen <jani@documentfoundation.org>
(cherry picked from commit c6db0e064959ec154db9471a8e1f1e2716bb3523)
Reviewed-on: https://gerrit.libreoffice.org/33266
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/misc/svxacorr.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editeng/source/misc/svxacorr.cxx b/editeng/source/misc/svxacorr.cxx index b363614ddaff..f8f180e729ff 100644 --- a/editeng/source/misc/svxacorr.cxx +++ b/editeng/source/misc/svxacorr.cxx @@ -104,13 +104,13 @@ static inline bool IsWordDelim( const sal_Unicode c ) static inline bool IsLowerLetter( sal_Int32 nCharType ) { return CharClass::isLetterType( nCharType ) && - 0 == ( css::i18n::KCharacterType::UPPER & nCharType); + ( css::i18n::KCharacterType::LOWER & nCharType); } static inline bool IsUpperLetter( sal_Int32 nCharType ) { return CharClass::isLetterType( nCharType ) && - 0 == ( css::i18n::KCharacterType::LOWER & nCharType); + ( css::i18n::KCharacterType::UPPER & nCharType); } bool lcl_IsUnsupportedUnicodeChar( CharClass& rCC, const OUString& rTxt, @@ -415,7 +415,7 @@ bool SvxAutoCorrect::FnCapitalStartWord( SvxAutoCorrDoc& rDoc, const OUString& r if( xSpeller->hasLanguage(eLang) ) { Sequence< css::beans::PropertyValue > aEmptySeq; - if (!xSpeller->spell(sWord, eLang, aEmptySeq).is()) + if (xSpeller->isValid(sWord, eLang, aEmptySeq)) { return false; } |