Replace remaining getCppuType et al with cppu::UnoType

Change-Id: Ida0a4cced7d35be6f9da16447ae4e23ded5e415a
This commit is contained in:
Stephan Bergmann
2015-04-01 08:43:42 +02:00
parent a0c46d2f20
commit 42c848c506

View File

@@ -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>() );
}