From a9bc164accdccc0f0ee074ded9b3559a52d5300b Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Tue, 19 Mar 2013 14:11:15 +0900 Subject: sal_Bool to bool Change-Id: I0a8d0f11c45aba1d34a0098e6a371bd616b08b72 --- cui/source/options/optdict.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'cui') diff --git a/cui/source/options/optdict.cxx b/cui/source/options/optdict.cxx index f87619eb3b44..33534bc2eba7 100644 --- a/cui/source/options/optdict.cxx +++ b/cui/source/options/optdict.cxx @@ -276,8 +276,7 @@ SvxEditDictionaryDialog::SvxEditDictionaryDialog( Reference< XDictionary > xDic( pDic[i], UNO_QUERY ); if (xDic.is()) { - sal_Bool bNegative = xDic->getDictionaryType() == DictionaryType_NEGATIVE ? - sal_True : sal_False; + bool bNegative = xDic->getDictionaryType() == DictionaryType_NEGATIVE; String aDicName( xDic->getName() ); const String aTxt( ::GetDicInfoStr( aDicName, LanguageTag( xDic->getLocale() ).getLanguageType(), bNegative ) ); @@ -455,7 +454,7 @@ IMPL_LINK_NOARG(SvxEditDictionaryDialog, SelectLangHdl_Impl) if ( aBox.Execute() == RET_YES ) { xDic->setLocale( LanguageTag( nLang ).getLocale() ); - sal_Bool bNegativ = xDic->getDictionaryType() == DictionaryType_NEGATIVE; + bool bNegativ = xDic->getDictionaryType() == DictionaryType_NEGATIVE; const String sName( ::GetDicInfoStr( xDic->getName(), -- cgit v1.2.1