diff options
-rw-r--r-- | dtrans/source/win32/dtobj/DOTransferable.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dtrans/source/win32/dtobj/DOTransferable.cxx b/dtrans/source/win32/dtobj/DOTransferable.cxx index 5588cda2fa74..58117c51565f 100644 --- a/dtrans/source/win32/dtobj/DOTransferable.cxx +++ b/dtrans/source/win32/dtobj/DOTransferable.cxx @@ -114,10 +114,10 @@ Any byteStreamToAny( CDOTransferable::ByteSequence_t& aByteStream, const Type& a if ( aRequestedDataType == CPPUTYPE_OUSTRING ) { OUString str = byteStreamToOUString( aByteStream ); - aAny = makeAny( str ); + aAny <<= str; } else - aAny = makeAny( aByteStream ); + aAny <<= aByteStream; return aAny; } |