Replace remaining getCppuType et al with cppu::UnoType

Change-Id: I37d1a939c1a98f77152ed90dfb201446101f3157
This commit is contained in:
Stephan Bergmann
2015-04-01 08:35:33 +02:00
parent 4f2a236da4
commit fb088cdd8d
44 changed files with 74 additions and 85 deletions

View File

@@ -500,7 +500,7 @@ void unoInterfaceProxyDispatch(
OUString("illegal member type description!"),
::com::sun::star::uno::Reference< ::com::sun::star::uno::XInterface >() );
Type const & rExcType = ::getCppuType( &aExc );
Type const & rExcType = cppu::UnoType<decltype(aExc)>::get();
// binary identical null reference
::uno_type_any_construct( *ppException, &aExc, rExcType.getTypeLibType(), 0 );
}