diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 16:06:47 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-09-08 16:06:47 +0000 |
commit | 0dcd6f9d8e376303de64fe48c7254e5ae8d2d78c (patch) | |
tree | d6e017f72ecbf369fcf7c6746e60d4a8432a9860 /ucb | |
parent | 3adc6d6b7e40d3799a37770bdc799775903e69d0 (diff) |
INTEGRATION: CWS ooo20040704 (1.13.110); FILE MERGED
2004/06/28 14:35:46 cmc 1.13.110.1: #i30801# allow using system libs if possible
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontentcaps.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav/webdavcontentcaps.cxx b/ucb/source/ucp/webdav/webdavcontentcaps.cxx index 5b99aa705c4e..45d0dd8cd01a 100644 --- a/ucb/source/ucp/webdav/webdavcontentcaps.cxx +++ b/ucb/source/ucp/webdav/webdavcontentcaps.cxx @@ -2,9 +2,9 @@ * * $RCSfile: webdavcontentcaps.cxx,v $ * - * $Revision: 1.13 $ + * $Revision: 1.14 $ * - * last change: $Author: vg $ $Date: 2003-05-22 09:37:33 $ + * last change: $Author: rt $ $Date: 2004-09-08 17:06:47 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -375,10 +375,10 @@ uno::Sequence< beans::Property > Content::getProperties( try { std::vector< DAVResourceInfo > props; - m_xResAccess->PROPFIND( ZERO, props, xEnv ); + m_xResAccess->PROPFIND( DAVZERO, props, xEnv ); // Note: vector always contains exactly one resource info, because - // we used a depth of ZERO for PROPFIND. + // we used a depth of DAVZERO for PROPFIND. aPropSet.insert( (*props.begin()).properties.begin(), (*props.begin()).properties.end() ); } |