summaryrefslogtreecommitdiff
path: root/lingucomponent/source/spellcheck
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-22 12:56:25 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:50 +0200
commitca56379f27c53d4fa015d7adbb9494186f506de6 (patch)
tree13d294bc496d7ee13f1b0eea85b3333241fdcbc3 /lingucomponent/source/spellcheck
parent20c0e71b9d773c03c8c03755076e0d1ad109db6d (diff)
lingucomponent: sal_Bool->bool
Change-Id: I2bc4548574a3275f0839451e747687f924465137
Diffstat (limited to 'lingucomponent/source/spellcheck')
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
index 1531c7e4e04d..1622e1d87da1 100644
--- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx
+++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
@@ -233,7 +233,7 @@ sal_Bool SAL_CALL SpellChecker::hasLocale(const Locale& rLocale)
{
MutexGuard aGuard( GetLinguMutex() );
- sal_Bool bRes = sal_False;
+ bool bRes = false;
if (!aSuppLocales.getLength())
getLocales();
@@ -243,7 +243,7 @@ sal_Bool SAL_CALL SpellChecker::hasLocale(const Locale& rLocale)
{
if (rLocale == pLocale[i])
{
- bRes = sal_True;
+ bRes = true;
break;
}
}
@@ -515,7 +515,7 @@ sal_Bool SAL_CALL SpellChecker::addLinguServiceEventListener(
{
MutexGuard aGuard( GetLinguMutex() );
- sal_Bool bRes = sal_False;
+ bool bRes = false;
if (!bDisposing && rxLstnr.is())
{
bRes = GetPropHelper().addLinguServiceEventListener( rxLstnr );
@@ -529,7 +529,7 @@ sal_Bool SAL_CALL SpellChecker::removeLinguServiceEventListener(
{
MutexGuard aGuard( GetLinguMutex() );
- sal_Bool bRes = sal_False;
+ bool bRes = false;
if (!bDisposing && rxLstnr.is())
{
bRes = GetPropHelper().removeLinguServiceEventListener( rxLstnr );