diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:36:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:36:11 +0200 |
commit | a88a386c724d13f73c33768e9a78efd95f522a89 (patch) | |
tree | 97cd2fd7f29b9d2fc22b920036990c2539dfdd46 /include/comphelper/property.hxx | |
parent | 916f88f085cf3d0e0cc8366748f38fd7585dcdd3 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I8dd0e5c8837fe1615aa9d5f546c2fd1c0985f044
Diffstat (limited to 'include/comphelper/property.hxx')
-rw-r--r-- | include/comphelper/property.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/property.hxx b/include/comphelper/property.hxx index 7be8761fb128..b45c3f0470d8 100644 --- a/include/comphelper/property.hxx +++ b/include/comphelper/property.hxx @@ -153,8 +153,8 @@ inline bool tryPropertyValue(css::uno::Any& /*out*/_rConvertedValue, css::uno::A ::cppu::convertPropertyValue(bNewValue, _rValueToSet); if (bool(bNewValue) != _bCurrentValue) { - _rConvertedValue.setValue(&bNewValue, ::getBooleanCppuType()); - _rOldValue.setValue(&_bCurrentValue, ::getBooleanCppuType()); + _rConvertedValue.setValue(&bNewValue, cppu::UnoType<bool>::get()); + _rOldValue.setValue(&_bCurrentValue, cppu::UnoType<bool>::get()); bModified = true; } return bModified; |