diff options
Diffstat (limited to 'sax/test')
-rw-r--r-- | sax/test/sax/testsax.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/test/sax/testsax.cxx b/sax/test/sax/testsax.cxx index 2d114c66aeef..caeac6d771d8 100644 --- a/sax/test/sax/testsax.cxx +++ b/sax/test/sax/testsax.cxx @@ -630,7 +630,7 @@ void OSaxParserTest::testFile( const Reference < XParser > & rParser ) while(true) { SAXParseException *pEx; - if( any.getValueType() == getCppuType( &e ) ) { + if( any.getValueType() == cppu::UnoType<decltype(e)>::get() ) { pEx = ( SAXParseException * ) any.getValue(); OString o1 = OUStringToOString(pEx->Message, RTL_TEXTENCODING_UTF8 ); printf( "%s\n" , o1.getStr() ); @@ -695,7 +695,7 @@ void OSaxParserTest::testPerformance( const Reference < XParser > & rParser ) Any any; any <<= e; while(true) { - if( any.getValueType() == getCppuType( &e ) ) { + if( any.getValueType() == cppu::UnoType<decltype(e)>::get() ) { SAXParseException ex; any >>= ex; OString o = OUStringToOString( ex.Message , RTL_TEXTENCODING_ASCII_US ); |