diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:43:42 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-01 08:43:42 +0200 |
commit | 42c848c506b53a6de21c3b0129fd11d2f74e20b2 (patch) | |
tree | 2fb8c0d297fe331c17542019b42bb6cd962ae42d /xmlscript/source/inc | |
parent | a0c46d2f20989bab56a7bc95409d0043a3f323c7 (diff) |
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Ida0a4cced7d35be6f9da16447ae4e23ded5e415a
Diffstat (limited to 'xmlscript/source/inc')
-rw-r--r-- | xmlscript/source/inc/misc.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmlscript/source/inc/misc.hxx b/xmlscript/source/inc/misc.hxx index 79b447a76e49..e8ece5e64d0c 100644 --- a/xmlscript/source/inc/misc.hxx +++ b/xmlscript/source/inc/misc.hxx @@ -31,7 +31,7 @@ inline void extract_throw( T * p, ::com::sun::star::uno::Any const & a ) if (! (a >>= *p)) { throw ::com::sun::star::uno::RuntimeException( - "expected " + ::getCppuType( p ).getTypeName(), + "expected " + cppu::UnoType<T>::get().getTypeName(), ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>() ); } |