From 42c848c506b53a6de21c3b0129fd11d2f74e20b2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 1 Apr 2015 08:43:42 +0200 Subject: [PATCH] Replace remaining getCppuType et al with cppu::UnoType Change-Id: Ida0a4cced7d35be6f9da16447ae4e23ded5e415a --- xmlscript/source/inc/misc.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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::get().getTypeName(), ::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface>() ); }