Kaydet (Commit) 3fe75ff0 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

sal_Bool -> bool

Change-Id: Id93c6c3cd5d9d4821a59b9f6a5d0b534939dfa39
üst 1d642f60
...@@ -193,7 +193,7 @@ sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale) ...@@ -193,7 +193,7 @@ sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale)
{ {
MutexGuard aGuard( GetLinguMutex() ); MutexGuard aGuard( GetLinguMutex() );
sal_Bool bRes = sal_False; bool bRes = false;
if (!aSuppLocales.getLength()) if (!aSuppLocales.getLength())
getLocales(); getLocales();
...@@ -203,7 +203,7 @@ sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale) ...@@ -203,7 +203,7 @@ sal_Bool SAL_CALL MacSpellChecker::hasLocale(const Locale& rLocale)
const Locale *pLocale = aSuppLocales.getConstArray(); const Locale *pLocale = aSuppLocales.getConstArray();
if (rLocale == pLocale[i]) if (rLocale == pLocale[i])
{ {
bRes = sal_True; bRes = true;
break; break;
} }
} }
...@@ -423,7 +423,7 @@ sal_Bool SAL_CALL ...@@ -423,7 +423,7 @@ sal_Bool SAL_CALL
{ {
MutexGuard aGuard( GetLinguMutex() ); MutexGuard aGuard( GetLinguMutex() );
sal_Bool bRes = sal_False; bool bRes = false;
if (!bDisposing && rxLstnr.is()) if (!bDisposing && rxLstnr.is())
{ {
bRes = GetPropHelper().addLinguServiceEventListener( rxLstnr ); bRes = GetPropHelper().addLinguServiceEventListener( rxLstnr );
...@@ -439,7 +439,7 @@ sal_Bool SAL_CALL ...@@ -439,7 +439,7 @@ sal_Bool SAL_CALL
{ {
MutexGuard aGuard( GetLinguMutex() ); MutexGuard aGuard( GetLinguMutex() );
sal_Bool bRes = sal_False; bool bRes = false;
if (!bDisposing && rxLstnr.is()) if (!bDisposing && rxLstnr.is())
{ {
DBG_ASSERT( xPropHelper.is(), "xPropHelper non existent" ); DBG_ASSERT( xPropHelper.is(), "xPropHelper non existent" );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment