summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-08-16 11:04:51 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-08-16 11:04:51 +0200
commit27e7da167052900214e61e6792da93e3ba1310f5 (patch)
tree714c889272b747cf8f94a746efb547fe4b4481ea /ucb
parentedd51b813005c2159426d8f2917eede5b14a4577 (diff)
sPropName is needed after all
Change-Id: Ib48606425edb5f267615f4a15028b15e8fd00d5d
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/DAVProperties.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/ucb/source/ucp/webdav-neon/DAVProperties.cxx b/ucb/source/ucp/webdav-neon/DAVProperties.cxx
index 8015b123a2e9..7abdb6f7a37a 100644
--- a/ucb/source/ucp/webdav-neon/DAVProperties.cxx
+++ b/ucb/source/ucp/webdav-neon/DAVProperties.cxx
@@ -183,6 +183,8 @@ bool DAVProperties::isUCBSpecialProperty(
if ( nEnd <= nStart ) // incl. -1 for "not found"
return false;
+ OUString sPropName( rFullName.copy( nStart, nEnd - nStart ) );
+
// TODO skip whitespaces?
if ( !rFullName.match( "xmlns:prop=\"", ++nEnd ) )
return false;
@@ -198,6 +200,7 @@ bool DAVProperties::isUCBSpecialProperty(
rParsedName = rFullName.copy( nStart, nEnd - nStart );
if ( !rParsedName.endsWith( "/" ) )
rParsedName += "/";
+ rParsedName += sPropName;
return rParsedName.getLength();
}