diff options
-rw-r--r-- | test/source/beans/xpropertyset.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/source/beans/xpropertyset.cxx b/test/source/beans/xpropertyset.cxx index c771042b8411..536bc2f8e282 100644 --- a/test/source/beans/xpropertyset.cxx +++ b/test/source/beans/xpropertyset.cxx @@ -80,7 +80,7 @@ bool XPropertySet::isPropertyValueChangeable(const OUString& rName) if (type == cppu::UnoType<bool>::get()) { // boolean type - bool bOld = any.get<sal_Bool>(); + bool bOld = any.get<bool>(); xPropSet->setPropertyValue(rName, makeAny(!bOld)); } else if (type == cppu::UnoType<sal_Int8>::get()) |