diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:42:40 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-25 16:42:40 +0200 |
commit | da81ff5c0eb3119c486ad7b8930e2036877795a5 (patch) | |
tree | 7d19a1589cdb286668c2f7dca801cbc747529088 | |
parent | 1f8983592f2a64246090151dca8c03c02027ec2c (diff) |
Some more sal_Bool -> bool
Change-Id: I4ee61f3f1d14cf4a90224199ed72e4de0890b5af
-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()) |