update ooo310-m15
[ooovba.git] / applied_patches / 0068-ucb-neon-different-name.diff
blobdeb94d2c18bad3fbb1dee5277a5e67c693525005
1 diff --git ucb/source/ucp/webdav/NeonPropFindRequest.cxx ucb/source/ucp/webdav/NeonPropFindRequest.cxx
2 index ae9f022..33b0cbc 100644
3 --- ucb/source/ucp/webdav/NeonPropFindRequest.cxx
4 +++ ucb/source/ucp/webdav/NeonPropFindRequest.cxx
5 @@ -103,8 +103,12 @@ extern "C" int NPFR_propfind_iter( void* userdata,
6 if ( aValue.getLength() )
8 aValue = aValue.toAsciiLowerCase();
9 - if ( aValue.compareTo(
10 - RTL_CONSTASCII_STRINGPARAM( "<dav:collection" ) ) == 0 )
11 + if (
12 + ( aValue.compareTo(
13 + RTL_CONSTASCII_STRINGPARAM( "<collection" ) ) == 0 ) ||
14 + ( aValue.compareTo(
15 + RTL_CONSTASCII_STRINGPARAM( "<dav:collection" ) ) == 0 )
16 + )
18 thePropertyValue.Value
19 <<= OUString::createFromAscii( "collection" );