Fix Windows-only code, part 7

Change-Id: Idf118bee77b55004897ae085e124b9cec2ba4237
This commit is contained in:
Stephan Bergmann
2016-05-04 14:30:53 +02:00
parent 709ef9f918
commit 6cf34974b8

View File

@@ -713,7 +713,7 @@ SAFEARRAY* OLEVariant::getUI1SAFEARRAYPtr() const
aValue.setValue( & cVal, cppu::UnoType<sal_Int8>::get());
break;
case VT_UI1: // there is no unsigned char in UNO
aValue.setValue( & bVal, cppu::UnoType<sal_Int8>::get());
aValue <<= sal_Int8(bVal);
break;
case VT_UI2:
aValue.setValue( & uiVal, cppu::UnoType<cppu::UnoUnsignedShortType>::get());