diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 15:56:21 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-03 15:56:21 +0100 |
commit | b0cda1b0b6245e43ad9721cf756ab2a6fdc01b38 (patch) | |
tree | dae66f24640504496cb482162c403cb8bf46361b /ucb | |
parent | 22b064a7859dbbf8e1f7988f95748bbbf0fb4c0c (diff) |
loplugin:stringconstant
Change-Id: I1a594a3d62790125244d221aeaa6d989adf30d97
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 516797e6203e..76a4c0ac24a8 100644 --- a/ucb/source/ucp/webdav-neon/NeonSession.cxx +++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx @@ -146,7 +146,7 @@ static bool noKeepAlive( const uno::Sequence< beans::NamedValue >& rFlags ) const sal_Int32 nLen(rFlags.getLength()); const beans::NamedValue* pValue( std::find_if(pAry,pAry+nLen, - [] (beans::NamedValue const& rNV) { return rNV.Name == OUString("KeepAlive"); } )); + [] (beans::NamedValue const& rNV) { return rNV.Name == "KeepAlive"; } )); if ( pValue != pAry+nLen && !pValue->Value.get<sal_Bool>() ) return true; |