diff options
Diffstat (limited to 'bridges/test/testcomp.cxx')
-rw-r--r-- | bridges/test/testcomp.cxx | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/bridges/test/testcomp.cxx b/bridges/test/testcomp.cxx index ebf097197c6b..376dab71f6f9 100644 --- a/bridges/test/testcomp.cxx +++ b/bridges/test/testcomp.cxx @@ -122,20 +122,20 @@ public: { // execution time remains appr. constant any time Any aRet; - if (aType == ::getCppuType( (const Reference< XInterface > *)0 )) + if (aType == cppu::UnoType<XInterface>::get()) { void * p = (XInterface *)(XPerformanceTest *)this; - aRet.setValue( &p, ::getCppuType( (const Reference< XInterface > *)0 ) ); + aRet.setValue( &p, cppu::UnoType<XInterface>::get() ); } - if (aType == ::getCppuType( (const Reference< XPerformanceTest > *)0 )) + if (aType == cppu::UnoType<XPerformanceTest>::get()) { void * p = (XPerformanceTest *)this; - aRet.setValue( &p, ::getCppuType( (const Reference< XPerformanceTest > *)0 ) ); + aRet.setValue( &p, cppu::UnoType<XPerformanceTest>::get() ); } if (! aRet.hasValue()) { void * p = (XPerformanceTest *)this; - Any aDummy( &p, ::getCppuType( (const Reference< XPerformanceTest > *)0 ) ); + Any aDummy( &p, cppu::UnoType<XPerformanceTest>::get() ); } return aRet; } @@ -615,8 +615,7 @@ void testAllTypes( const Reference < XCallMe > & rRCallMe ) void testRemote( const Reference< XInterface > &rRemote ) { - char a; - getCppuType( (sal_Int8*)&a ); + cppu::UnoType<sal_Int8>::get(); Reference< XTestFactory > rRFact( rRemote , UNO_QUERY ); if( ! rRFact.is() ) |