diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2001-03-09 13:25:52 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2001-03-09 13:25:52 +0000 |
commit | ad255e5159fa52eed5457bb54b1d28dbe853a602 (patch) | |
tree | c8f7a1bbc0c08e04b4c855760fa8f75cb8002e27 /cppu | |
parent | 7d771c06ce1fca4e16767bc962d2c3fbbaec08ee (diff) |
*** empty log message ***
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/test/testcppu.cxx | 38 |
1 files changed, 14 insertions, 24 deletions
diff --git a/cppu/test/testcppu.cxx b/cppu/test/testcppu.cxx index 59b72d38f217..3c8b7173937b 100644 --- a/cppu/test/testcppu.cxx +++ b/cppu/test/testcppu.cxx @@ -2,9 +2,9 @@ * * $RCSfile: testcppu.cxx,v $ * - * $Revision: 1.6 $ + * $Revision: 1.7 $ * - * last change: $Author: dbo $ $Date: 2001-03-09 13:51:35 $ + * last change: $Author: dbo $ $Date: 2001-03-09 14:25:52 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -835,36 +835,26 @@ static void testEnvironment(void) sal_Int32 nLen; OUString aUnoEnvTypeName( RTL_CONSTASCII_USTRINGPARAM(UNO_LB_UNO) ); - uno_getEnvironment( &pEnv, aUnoEnvTypeName.pData, 0 ); + ::uno_getEnvironment( &pEnv, aUnoEnvTypeName.pData, 0 ); + ::uno_dumpEnvironment( stderr, pEnv, 0 ); (*pEnv->pExtEnv->getRegisteredInterfaces)( pEnv->pExtEnv, &ppInterfaces, &nLen, rtl_allocateMemory ); - if (nLen) + while (nLen--) { - OSL_TRACE( "### UNO interfaces left:\n" ); - ::uno_dumpEnvironment( stderr, pEnv, 0 ); - - while (nLen--) - { - uno_Interface * pUnoI = (uno_Interface *)ppInterfaces[nLen]; - (*pUnoI->release)( pUnoI ); - } + uno_Interface * pUnoI = (uno_Interface *)ppInterfaces[nLen]; + (*pUnoI->release)( pUnoI ); } - rtl_freeMemory( ppInterfaces ); + ::rtl_freeMemory( ppInterfaces ); OUString aCppEnvTypeName( RTL_CONSTASCII_USTRINGPARAM(CPPU_CURRENT_LANGUAGE_BINDING_NAME) ); - uno_getEnvironment( &pEnv, aCppEnvTypeName.pData, 0 ); + ::uno_getEnvironment( &pEnv, aCppEnvTypeName.pData, 0 ); + ::uno_dumpEnvironment( stderr, pEnv, 0 ); (*pEnv->pExtEnv->getRegisteredInterfaces)( pEnv->pExtEnv, &ppInterfaces, &nLen, rtl_allocateMemory ); - if (nLen) + while (nLen--) { - OSL_TRACE( "### C++ interfaces left:\n" ); - ::uno_dumpEnvironment( stderr, pEnv, 0 ); - - while (nLen--) - { - XInterface * p = (XInterface *)ppInterfaces[nLen]; - p->release(); - } + XInterface * p = (XInterface *)ppInterfaces[nLen]; + p->release(); } - rtl_freeMemory( ppInterfaces ); + ::rtl_freeMemory( ppInterfaces ); (*pEnv->release)( pEnv ); } |