Kaydet (Commit) c842f81e authored tarafından Kurt Zenker's avatar Kurt Zenker

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!
üst 73600f38
......@@ -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;
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment