diff options
author | Matúš Kukan <matus.kukan@collabora.com> | 2014-02-06 22:59:42 +0100 |
---|---|---|
committer | Matúš Kukan <matus.kukan@collabora.com> | 2014-02-26 16:46:55 +0100 |
commit | aa68e4c54952578fcf644f7a6df5174028a1412d (patch) | |
tree | 6230e903bf5b3223022d144a668b69ec6d6f5806 /ucb | |
parent | 43fc67adcc3bdc5efaaaf9b0d65e53e99880b18a (diff) |
webdav: fix cherry-pick commit 7056e8ef89e938e38fc5b2b8a7493f0c79d5efd4
Change-Id: I177daf0d4e22d96167ab094a5c9d5c9cab6cf409
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx b/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx index 1d5d0f01abb5..557a0e74983b 100644 --- a/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx +++ b/ucb/source/ucp/webdav/SerfPropFindReqProcImpl.cxx @@ -113,14 +113,14 @@ serf_bucket_t * SerfPropFindReqProcImpl::createSerfRequestBucket( serf_request_t thePropName ); /* <*propname* xmlns="*propns*" /> */ - aBodyText += "<"; - aBodyText += OUString::createFromAscii( thePropName.name ); - aBodyText += " xmlnx=\""; - aBodyText += OUString::createFromAscii( thePropName.nspace ); - aBodyText += "\"/>"; + aBuffer.append( "<" ); + aBuffer.append( thePropName.name ); + aBuffer.append( " xmlnx=\"" ); + aBuffer.append( thePropName.nspace ); + aBuffer.append( "\"/>" ); } - aBodyText = "<prop>" + aBodyText + "</prop>"; + aBuffer.append( "</prop>" ); } else { |