summaryrefslogtreecommitdiff
path: root/xmlscript
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-04-01 08:43:42 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-04-01 08:43:42 +0200
commit42c848c506b53a6de21c3b0129fd11d2f74e20b2 (patch)
tree2fb8c0d297fe331c17542019b42bb6cd962ae42d /xmlscript
parenta0c46d2f20989bab56a7bc95409d0043a3f323c7 (diff)
Replace remaining getCppuType et al with cppu::UnoType
Change-Id: Ida0a4cced7d35be6f9da16447ae4e23ded5e415a
Diffstat (limited to 'xmlscript')
-rw-r--r--xmlscript/source/inc/misc.hxx2
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>() );
}