summaryrefslogtreecommitdiff
path: root/include/comphelper
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-09-05 17:55:36 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-09-05 17:55:36 +0200
commit4e933ea84ec97ab5c4a353995c4c1ce7cdf54ea3 (patch)
tree5312d1d2e34b4aecfd7ca6b55dbd15be51f2bd11 /include/comphelper
parentf893a2b9ee74e15de4ead641635c728616b65bdc (diff)
sal_Bool -> bool
Change-Id: I0d491db88b181de63fcfb2e45a02571f272b6bfe
Diffstat (limited to 'include/comphelper')
-rw-r--r--include/comphelper/property.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/property.hxx b/include/comphelper/property.hxx
index a4171fdb4db9..f22cd4a44492 100644
--- a/include/comphelper/property.hxx
+++ b/include/comphelper/property.hxx
@@ -125,9 +125,9 @@ tryPropertyValueEnum(css::uno::Any& /*out*/_rConvertedValue, css::uno::Any& /*ou
inline bool tryPropertyValue(css::uno::Any& /*out*/_rConvertedValue, css::uno::Any& /*out*/_rOldValue, const css::uno::Any& _rValueToSet, bool _bCurrentValue)
{
bool bModified(false);
- sal_Bool bNewValue(false);
+ bool bNewValue(false);
::cppu::convertPropertyValue(bNewValue, _rValueToSet);
- if (bool(bNewValue) != _bCurrentValue)
+ if (bNewValue != _bCurrentValue)
{
_rConvertedValue <<= bNewValue;
_rOldValue <<= _bCurrentValue;