diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-08-07 13:53:00 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2003-08-07 13:53:00 +0000 |
commit | d0e28a5f5978a9b25e22ca26928bdbc630a53f72 (patch) | |
tree | 8804e1a99e029ff121a25d2356377db43fea819b /ucb | |
parent | 9cb128fb7616fe84c86eb3709536f597d42924b8 (diff) |
INTEGRATION: CWS sb5 (1.39.10); FILE MERGED
2003/08/07 13:31:28 hr 1.39.10.3: RESYNC: (1.40-1.41); FILE MERGED
2003/07/21 09:18:38 sb 1.39.10.2: RESYNC: (1.39-1.40); FILE MERGED
2003/06/20 07:48:31 sb 1.39.10.1: #91676# InteractiveAugmentedIOException expects PropertyValues, not strings, as arguments.
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontent.cxx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx index 7ac9afc0da5e..19dcab48f312 100644 --- a/ucb/source/ucp/webdav/webdavcontent.cxx +++ b/ucb/source/ucp/webdav/webdavcontent.cxx @@ -2,9 +2,9 @@ * * $RCSfile: webdavcontent.cxx,v $ * - * $Revision: 1.41 $ + * $Revision: 1.42 $ * - * last change: $Author: vg $ $Date: 2003-07-25 11:40:04 $ + * last change: $Author: hr $ $Date: 2003-08-07 14:53:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2624,7 +2624,10 @@ uno::Any Content::MapDAVException( const DAVException & e, sal_Bool bWrite ) case SC_NOT_FOUND: { uno::Sequence< uno::Any > aArgs( 1 ); - aArgs[ 0 ] <<= m_xIdentifier->getContentIdentifier(); + aArgs[ 0 ] <<= beans::PropertyValue( + rtl::OUString::createFromAscii("Uri"), -1, + uno::makeAny(m_xIdentifier->getContentIdentifier()), + beans::PropertyState_DIRECT_VALUE); aException <<= star::ucb::InteractiveAugmentedIOException( |