diff options
Diffstat (limited to 'test/source/beans/xpropertyset.cxx')
-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 b842cd2ce9c8..c90e6e1ef23e 100644 --- a/test/source/beans/xpropertyset.cxx +++ b/test/source/beans/xpropertyset.cxx @@ -100,7 +100,7 @@ bool XPropertySet::isPropertyValueChangeable(const OUString& rName) if (type == getCppuType<sal_Bool>()) { // boolean type - sal_Bool bOld = any.get<sal_Bool>(); + bool bOld = any.get<sal_Bool>(); xPropSet->setPropertyValue(rName, makeAny(!bOld)); } else if (type == getCppuType<sal_Int8>()) |