summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-06-26 14:53:05 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-06-26 14:53:05 +0000
commit84be6b27e27d49627e1b5b602278f2f564fac0b6 (patch)
treeb4910803b3b197bd52ea50e2d2f2acef1980e239
parenta80593725efa1f3b1bfd93e06a8f2afb54cfcc3f (diff)
#87187# - Fixed yet another solaris build problem.
-rw-r--r--ucb/source/ucp/webdav/NeonSession.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/ucb/source/ucp/webdav/NeonSession.cxx b/ucb/source/ucp/webdav/NeonSession.cxx
index edf8b2d7f79d..513b3f1c3a9f 100644
--- a/ucb/source/ucp/webdav/NeonSession.cxx
+++ b/ucb/source/ucp/webdav/NeonSession.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: NeonSession.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: kso $ $Date: 2001-06-26 15:48:06 $
+ * last change: $Author: kso $ $Date: 2001-06-26 15:53:05 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -791,11 +791,11 @@ void NeonSession::GETWriter( void * inUserData,
// neon calls this function with (inLen == 0)...
if ( inLen > 0 )
{
- com::sun::star::uno::Reference<
- XOutputStream > * theOutputStreamPtr =
- static_cast< Reference< XOutputStream > * >( inUserData );
- com::sun::star::uno::Reference<
- XOutputStream > theOutputStream = *theOutputStreamPtr;
+ com::sun::star::uno::Reference< XOutputStream > * theOutputStreamPtr
+ = static_cast< com::sun::star::uno::Reference< XOutputStream > * >(
+ inUserData );
+ com::sun::star::uno::Reference< XOutputStream > theOutputStream =
+ *theOutputStreamPtr;
const Sequence< sal_Int8 > theSequence( ( sal_Int8 *) inBuf, inLen );
theOutputStream->writeBytes( theSequence );