diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-05-04 11:59:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-05-04 11:59:23 +0200 |
commit | 6e70103da07ec67b1c1f106a8fcd064e3df97271 (patch) | |
tree | 091834cdeb1358b9b3b0c3416f8672cc7cfb26d0 /include/comphelper | |
parent | 019a0fbdd860994ba727f19eba0879136406d0f9 (diff) |
While at it, delete Any functions on sal_Bool*
(at least for LIBO_INTERNAL_ONLY), to help further reduce the occurrences of
sal_Bool across the code base
Change-Id: I70654a0cb56655984c717b7b894f26c9ab47536e
Diffstat (limited to 'include/comphelper')
-rw-r--r-- | include/comphelper/property.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/comphelper/property.hxx b/include/comphelper/property.hxx index bc13cd0bc42d..74c318388ba7 100644 --- a/include/comphelper/property.hxx +++ b/include/comphelper/property.hxx @@ -131,7 +131,7 @@ inline bool tryPropertyValue(css::uno::Any& /*out*/_rConvertedValue, css::uno::A ::cppu::convertPropertyValue(bNewValue, _rValueToSet); if (bool(bNewValue) != _bCurrentValue) { - _rConvertedValue.setValue(&bNewValue, cppu::UnoType<bool>::get()); + _rConvertedValue <<= bNewValue; _rOldValue <<= _bCurrentValue; bModified = true; } |