summaryrefslogtreecommitdiff
path: root/linguistic/source/spelldsp.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-31 14:35:18 +0200
committerNoel Grandin <noel@peralex.com>2014-04-01 07:38:08 +0200
commitcb66ea3604ea441ddd03df706bb30e6063fb9a52 (patch)
tree6bda45549881a9456da3141f832f63378d7b4b35 /linguistic/source/spelldsp.cxx
parent95d7ebd22dd20da5a7a26000494b553944fc23ee (diff)
linguistic: sal_Bool->bool
Change-Id: Ie2366b25a1f81a5b25142e8b9a727bcc2f585c14
Diffstat (limited to 'linguistic/source/spelldsp.cxx')
-rw-r--r--linguistic/source/spelldsp.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/linguistic/source/spelldsp.cxx b/linguistic/source/spelldsp.cxx
index 0c892f38c20a..3ea7d5f4f40b 100644
--- a/linguistic/source/spelldsp.cxx
+++ b/linguistic/source/spelldsp.cxx
@@ -262,13 +262,13 @@ static Reference< XDictionaryEntry > lcl_GetRulingDictionaryEntry(
{
Reference< XSearchableDictionaryList > xDList( GetDictionaryList() );
Reference< XDictionaryEntry > xNegEntry( SearchDicList( xDList,
- rWord, nLanguage, sal_False, sal_True ) );
+ rWord, nLanguage, false, true ) );
if (xNegEntry.is())
xRes = xNegEntry;
else
{
Reference< XDictionaryEntry > xPosEntry( SearchDicList( xDList,
- rWord, nLanguage, sal_True, sal_True ) );
+ rWord, nLanguage, true, true ) );
if (xPosEntry.is())
xRes = xPosEntry;
}
@@ -660,7 +660,7 @@ Reference< XSpellAlternatives > SpellCheckerDispatcher::spell_Impl(
// replacement text must not be in negative dictionary itself
if (!aAddRplcTxt.isEmpty() &&
- !SearchDicList( xDList, aAddRplcTxt, nLanguage, sal_False, sal_True ).is())
+ !SearchDicList( xDList, aAddRplcTxt, nLanguage, false, true ).is())
{
aProposalList.Prepend( aAddRplcTxt );
}