From 3fe75ff0b3f45e1eeb94482ded0f62cd450b4223 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 15 Sep 2014 22:52:28 +0200 Subject: sal_Bool -> bool Change-Id: Id93c6c3cd5d9d4821a59b9f6a5d0b534939dfa39 --- lingucomponent/source/spellcheck/macosxspell/macspellimp.mm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm index 4f17ad397d6d..868026c8c6c6 100644 --- a/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm +++ b/lingucomponent/source/spellcheck/macosxspell/macspellimp.mm @@ -193,7 +193,7 @@ sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale) { MutexGuard aGuard( GetLinguMutex() ); - sal_Bool bRes = sal_False; + bool bRes = false; if (!aSuppLocales.getLength()) getLocales(); @@ -203,7 +203,7 @@ sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale) const Locale *pLocale = aSuppLocales.getConstArray(); if (rLocale == pLocale[i]) { - bRes = sal_True; + bRes = true; break; } } @@ -423,7 +423,7 @@ sal_Bool SAL_CALL { MutexGuard aGuard( GetLinguMutex() ); - sal_Bool bRes = sal_False; + bool bRes = false; if (!bDisposing && rxLstnr.is()) { bRes = GetPropHelper().addLinguServiceEventListener( rxLstnr ); @@ -439,7 +439,7 @@ sal_Bool SAL_CALL { MutexGuard aGuard( GetLinguMutex() ); - sal_Bool bRes = sal_False; + bool bRes = false; if (!bDisposing && rxLstnr.is()) { DBG_ASSERT( xPropHelper.is(), "xPropHelper non existent" ); -- cgit