From abf2ad6dae2e98557f3480e3c52d5cb11a40b330 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Wed, 1 Apr 2015 08:39:47 +0200 Subject: Replace remaining getCppuType et al with cppu::UnoType Change-Id: I736518e38a9badf9ee24564952a135bd5019d110 --- io/test/stm/datatest.cxx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'io/test') diff --git a/io/test/stm/datatest.cxx b/io/test/stm/datatest.cxx index 940d6ee87712..55a13c2433fe 100644 --- a/io/test/stm/datatest.cxx +++ b/io/test/stm/datatest.cxx @@ -805,8 +805,8 @@ sal_Bool compareMyPropertySet( Reference< XPropertySet > &r1 , Reference < XProp { sal_Bool b = sal_True; - if( r1->getPropertyValue("long").getValueType() == getCppuVoidType() || - r2->getPropertyValue("long").getValueType() == getCppuVoidType() ) { + if( r1->getPropertyValue("long").getValueType() == cppu::UnoType::get() || + r2->getPropertyValue("long").getValueType() == cppu::UnoType::get() ) { // one of the objects is not the correct propertyset ! fprintf( stderr, "compareMyPropertySet: 1\n" ); @@ -947,7 +947,7 @@ void OObjectStreamTest::testObject( const Reference< XObjectOutputStream > rProp->setPropertyValue("double", any ); sal_Bool b = sal_True; - any.setValue( &b , getCppuBooleanType() ); + any.setValue( &b , cppu::UnoType::get() ); rProp->setPropertyValue("bool", any ); sal_Int8 by = 120; @@ -955,7 +955,7 @@ void OObjectStreamTest::testObject( const Reference< XObjectOutputStream > rProp->setPropertyValue("byte", any ); sal_Unicode c = 'h'; - any.setValue( &c , getCppuCharType() ); + any.setValue( &c , cppu::UnoType::get() ); rProp->setPropertyValue("char", any ); OUString str( "hi du !" ); @@ -1006,7 +1006,7 @@ void OObjectStreamTest::testObject( const Reference< XObjectOutputStream > rProp->setPropertyValue("double", any ); sal_Bool b = sal_True; - any.setValue( &b , getCppuBooleanType() ); + any.setValue( &b , cppu::UnoType::get() ); rProp->setPropertyValue("bool", any ); sal_Int8 by = 120; @@ -1014,7 +1014,7 @@ void OObjectStreamTest::testObject( const Reference< XObjectOutputStream > rProp->setPropertyValue("byte", any ); sal_Unicode c = 'h'; - any.setValue( &c , getCppuCharType() ); + any.setValue( &c , cppu::UnoType::get() ); rProp->setPropertyValue("char", any ); OUString str( "hi du !" ); -- cgit