diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:42:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:42:56 +0200 |
commit | 15bdb0ae87fb7514d224657ce74e92bdad8f9c00 (patch) | |
tree | 0730892f4a3877124016ed0c2e8f76c56ebc3d05 /include | |
parent | 018e85387e1ed62ab8188ad4cb0728ee2a0a797c (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: I0ecb96d6f26c827640f3329c81884001f860090d
Diffstat (limited to 'include')
-rw-r--r-- | include/ucbhelper/macros.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx index f97d2e3f0051..8bdd20df0a15 100644 --- a/include/ucbhelper/macros.hxx +++ b/include/ucbhelper/macros.hxx @@ -32,8 +32,8 @@ -#define CPPU_TYPE( T ) getCppuType( static_cast< T * >( 0 ) ) -#define CPPU_TYPE_REF( T ) CPPU_TYPE( com::sun::star::uno::Reference< T > ) +#define CPPU_TYPE( T ) cppu::UnoType<T>::get() +#define CPPU_TYPE_REF( T ) CPPU_TYPE( T ) // XTypeProvider impl. internals |