diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-11-27 10:27:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-11-27 13:15:59 +0100 |
commit | a93b47c0a788771cc761f37e610985cbeb971a1e (patch) | |
tree | fd5fa0fe8601ca3796d1380be86ebba6e76d9db1 /extensions | |
parent | 71b66b0039819f38c935b4eb5d5951ceaf6e8468 (diff) |
CComVariant.lVal is of type LONG
Change-Id: I2f27089b37a5a73242bfb56d68db765a29dc4efe
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106725
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/ole/unoconversionutilities.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/source/ole/unoconversionutilities.hxx b/extensions/source/ole/unoconversionutilities.hxx index 32788abc4ad5..449941b202d9 100644 --- a/extensions/source/ole/unoconversionutilities.hxx +++ b/extensions/source/ole/unoconversionutilities.hxx @@ -1957,7 +1957,7 @@ void UnoConversionUtilities<T>::dispatchExObject2Sequence( const VARIANTARG* pva if( FAILED( VariantChangeType( &result, &result, 0, VT_I4))) throw BridgeRuntimeError("[automation bridge] UnoConversionUtilities<T>::dispatchExObject2Sequence \n" "Conversion of dispatch object to Sequence failed!"); - long length= result.lVal; + LONG length= result.lVal; result.Clear(); |