Some more sal_Bool -> bool

Change-Id: I974a1c8d64f5b13b9052365c3219dcd2dc6927dc
This commit is contained in:
Stephan Bergmann
2016-04-25 16:42:55 +02:00
parent 35e26c8a4b
commit e4738bfd0e

View File

@@ -147,7 +147,7 @@ static bool noKeepAlive( const uno::Sequence< beans::NamedValue >& rFlags )
const beans::NamedValue* pValue(
std::find_if(pAry,pAry+nLen,
[] (beans::NamedValue const& rNV) { return rNV.Name == "KeepAlive"; } ));
if ( pValue != pAry+nLen && !pValue->Value.get<sal_Bool>() )
if ( pValue != pAry+nLen && !pValue->Value.get<bool>() )
return true;
return false;