diff options
author | Noel Power <noel.power@novell.com> | 2011-10-26 17:28:51 +0100 |
---|---|---|
committer | Noel Power <noel.power@novell.com> | 2011-10-26 17:30:39 +0100 |
commit | 3fcb94311fd7dd40c05ca132e3a30a888316cbbe (patch) | |
tree | 932000f7b606417f1476e4d48596c94efde5f834 /extensions/source/ole | |
parent | 3b317b52dce52b4302f40c8de75e3abf3d12afa2 (diff) |
fix handling of SAFEARRAY(s) returned as variant in olebridge (fdo#38441)
Diffstat (limited to 'extensions/source/ole')
-rw-r--r-- | extensions/source/ole/unoconversionutilities.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index b6ac7f1caff0..359009e4d485 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -134,7 +134,7 @@ public: /** @exception com.sun.star.lang.IllegalArgumentException If rSeq does not contain a sequence then the exception is thrown. */ - SAFEARRAY* createUnoSequenceWrapper(const Any& rSeq); + VARTYPE createUnoSequenceWrapper(const Any& rSeq, SAFEARRAY*& pOutArray ); /** @exception com.sun.star.lang.IllegalArgumentException If rSeq does not contain a sequence or elemtype has no proper value then the exception is thrown. @@ -779,11 +779,12 @@ void UnoConversionUtilities<T>::anyToVariant(VARIANT* pVariant, const Any& rAny) } case TypeClass_SEQUENCE: // sequence ??? SafeArray descriptor { - SAFEARRAY* pArray = createUnoSequenceWrapper(rAny); - if (pArray) + SAFEARRAY* pOutArray = NULL; + VARTYPE eArrayType = createUnoSequenceWrapper(rAny, pOutArray ); + if (pOutArray) { - V_VT(pVariant) = VT_ARRAY | VT_VARIANT; - V_ARRAY(pVariant) = pArray; + V_VT(pVariant) = VT_ARRAY | eArrayType; + V_ARRAY(pVariant) = pOutArray; } else { @@ -1295,9 +1296,8 @@ void UnoConversionUtilities<T>::getElementCountAndTypeOfSequence( const Any& rS template<class T> -SAFEARRAY* UnoConversionUtilities<T>::createUnoSequenceWrapper(const Any& rSeq) +VARTYPE UnoConversionUtilities<T>::createUnoSequenceWrapper(const Any& rSeq, SAFEARRAY*& pArray) { - SAFEARRAY* pArray = NULL; sal_uInt32 n = 0; if( rSeq.getValueTypeClass() != TypeClass_SEQUENCE ) @@ -1361,7 +1361,7 @@ SAFEARRAY* UnoConversionUtilities<T>::createUnoSequenceWrapper(const Any& rSeq) TYPELIB_DANGER_RELEASE( pSeqElementDesc); - return pArray; + return eTargetElementType; } /* The argument rObj can contain |