diff options
author | Kurt Zenker <kz@openoffice.org> | 2007-06-19 15:13:29 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2007-06-19 15:13:29 +0000 |
commit | c842f81e6065a6f95dccf9def461edcf33d1c3ff (patch) | |
tree | 2b354151c7d83bffb3fe13170bf62853e8d20c46 /ucb/source | |
parent | 73600f38e85b1454960a882c31232ea6dd777e68 (diff) |
INTEGRATION: CWS ucbfixes02 (1.52.34); FILE MERGED
2007/06/12 08:37:58 kso 1.52.34.3: RESYNC: (1.53-1.54); FILE MERGED
2007/05/29 14:49:21 kso 1.52.34.2: RESYNC: (1.52-1.53); FILE MERGED
2007/05/15 11:52:54 kso 1.52.34.1: #i77134# - HTTP header field names are case insensitive!
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/webdav/webdavcontent.cxx | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav/webdavcontent.cxx b/ucb/source/ucp/webdav/webdavcontent.cxx index fde28a108f67..2fe3498407cd 100644 --- a/ucb/source/ucp/webdav/webdavcontent.cxx +++ b/ucb/source/ucp/webdav/webdavcontent.cxx @@ -4,9 +4,9 @@ * * $RCSfile: webdavcontent.cxx,v $ * - * $Revision: 1.54 $ + * $Revision: 1.55 $ * - * last change: $Author: ihi $ $Date: 2007-06-05 18:20:52 $ + * last change: $Author: kz $ $Date: 2007-06-19 16:13:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -70,6 +70,9 @@ #ifndef _COM_SUN_STAR_BEANS_PROPERTYSETINFOCHANGEEVENT_HPP_ #include <com/sun/star/beans/PropertySetInfoChangeEvent.hpp> #endif +#ifndef _COM_SUN_STAR_BEANS_PROPERTYVALUE_HPP_ +#include <com/sun/star/beans/PropertyValue.hpp> +#endif #ifndef _COM_SUN_STAR_IO_XACTIVEDATASINK_HPP_ #include <com/sun/star/io/XActiveDataSink.hpp> #endif @@ -1381,7 +1384,7 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( while ( it != end ) { if ( pProvider->getProperty( (*it).first, aProp ) ) - xRow->appendObject( aProp, (*it).second ); + xRow->appendObject( aProp, (*it).second.value() ); ++it; } @@ -1620,7 +1623,8 @@ uno::Reference< sdbc::XRow > Content::getPropertyValues( xProps->addProperty( rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "BaseURI" ) ), - uno::makeAny( getBaseURI() ) ); + uno::makeAny( getBaseURI() ), + true ); break; } } |