diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-05-23 17:42:51 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-05-23 17:46:23 +0200 |
commit | aac817bca6951a42bfe6c8fbfd86163190f96997 (patch) | |
tree | 450f1cf9a590f034124c1bf53be7175fe3a2ce59 /ucb/source | |
parent | 3f5c45b70864af95a6362acf4684fb57eb85e348 (diff) |
Related rhbz#961460: Fix regression around OUString::compareTo usage
...originally introduced with 8da928423add3fdb94baee2a3f3fa053390f828e "Remove
RTL_CONSTASCII_(U)STRINGPARAM in ucb(ucp)," leading to "IsFolder" not being
properly set in the WebDAV UCP, leading to failure when saving documents.
Change-Id: Id2cc98582c9feffaa501a68069cd606fb420fd29
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/webdav-neon/NeonPropFindRequest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonPropFindRequest.cxx b/ucb/source/ucp/webdav-neon/NeonPropFindRequest.cxx index 0ec097c10c32..c5945f27600c 100644 --- a/ucb/source/ucp/webdav-neon/NeonPropFindRequest.cxx +++ b/ucb/source/ucp/webdav-neon/NeonPropFindRequest.cxx @@ -135,7 +135,7 @@ extern "C" int NPFR_propfind_iter( void* userdata, if ( !aValue.isEmpty() ) { aValue = stripDavNamespace( aValue ).toAsciiLowerCase(); - if ( aValue == "<collection" ) + if ( aValue.startsWith("<collection") ) { thePropertyValue.Value <<= OUString("collection"); |