diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:42:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:42:55 +0200 |
commit | e4738bfd0e5a05e157993f105b8cf7a0b83b1131 (patch) | |
tree | f5f30e8d6821d578fba050abb1ec32da85956afb /ucb | |
parent | 35e26c8a4bd7886420714775bf17d58ecc71a48f (diff) |
Some more sal_Bool -> bool
Change-Id: I974a1c8d64f5b13b9052365c3219dcd2dc6927dc
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonSession.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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<sal_Bool>() ) + if ( pValue != pAry+nLen && !pValue->Value.get<bool>() ) return true; return false; |