Some more sal_Bool -> bool
Change-Id: I974a1c8d64f5b13b9052365c3219dcd2dc6927dc
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user