diff options
Diffstat (limited to 'ucb/source/ucp/webdav/NeonPropFindRequest.cxx')
-rw-r--r-- | ucb/source/ucp/webdav/NeonPropFindRequest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/NeonPropFindRequest.cxx b/ucb/source/ucp/webdav/NeonPropFindRequest.cxx index ea9f319fd570..c8d29f5149d1 100644 --- a/ucb/source/ucp/webdav/NeonPropFindRequest.cxx +++ b/ucb/source/ucp/webdav/NeonPropFindRequest.cxx @@ -137,7 +137,7 @@ extern "C" int NPFR_propfind_iter( void* userdata, { OString aValue( value ); aValue = aValue.trim(); // #107358# remove leading/trailing spaces - if ( aValue.getLength() ) + if ( !aValue.isEmpty() ) { aValue = stripDavNamespace( aValue ).toAsciiLowerCase(); if ( aValue.compareTo( |