From e4738bfd0e5a05e157993f105b8cf7a0b83b1131 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 25 Apr 2016 16:42:55 +0200 Subject: [PATCH] Some more sal_Bool -> bool Change-Id: I974a1c8d64f5b13b9052365c3219dcd2dc6927dc --- ucb/source/ucp/webdav-neon/NeonSession.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx index 98814330a765..e1ee6f2f703b 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.cxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx @@ -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() ) + if ( pValue != pAry+nLen && !pValue->Value.get() ) return true; return false;