summaryrefslogtreecommitdiff
path: root/include/comphelper/types.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:36:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:36:11 +0200
commita88a386c724d13f73c33768e9a78efd95f522a89 (patch)
tree97cd2fd7f29b9d2fc22b920036990c2539dfdd46 /include/comphelper/types.hxx
parent916f88f085cf3d0e0cc8366748f38fd7585dcdd3 (diff)
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I8dd0e5c8837fe1615aa9d5f546c2fd1c0985f044
Diffstat (limited to 'include/comphelper/types.hxx')
-rw-r--r--include/comphelper/types.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/comphelper/types.hxx b/include/comphelper/types.hxx
index 355daf2d71b3..4ffb6c81b307 100644
--- a/include/comphelper/types.hxx
+++ b/include/comphelper/types.hxx
@@ -154,11 +154,11 @@ namespace comphelper
//= replacement of some former UsrAny.setXXX methods - can be used with rvalues
inline void setBOOL(css::uno::Any& _rAny, bool _b)
- { _rAny.setValue(&_b, ::getBooleanCppuType()); }
+ { _rAny.setValue(&_b, cppu::UnoType<bool>::get()); }
//= extension of ::cppu::makeAny()
inline css::uno::Any makeBoolAny(bool _b)
- { return css::uno::Any(&_b, ::getBooleanCppuType()); }
+ { return css::uno::Any(&_b, cppu::UnoType<bool>::get()); }
} // namespace comphelper