From a22e62641abbbb7e11cc8b1baaaa03d333debb66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laurent=20Charri=C3=A8re?= Date: Wed, 13 Oct 2010 22:28:39 -0700 Subject: [PATCH] Translate German comments in ure/cppuhelper MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Laurent Charrière --- cppuhelper/source/interfacecontainer.cxx | 4 ++-- cppuhelper/source/propshlp.cxx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cppuhelper/source/interfacecontainer.cxx b/cppuhelper/source/interfacecontainer.cxx index 3053193d5ee6..f1b249d7a018 100644 --- a/cppuhelper/source/interfacecontainer.cxx +++ b/cppuhelper/source/interfacecontainer.cxx @@ -326,7 +326,7 @@ void OInterfaceContainerHelper::disposeAndClear( const EventObject & rEvt ) SAL_ { ClearableMutexGuard aGuard( rMutex ); OInterfaceIteratorHelper aIt( *this ); - // Container freigeben, falls im disposing neue Einträge kommen + // Release container, in case new entries come while disposing OSL_ENSURE( !bIsList || bInUse, "OInterfaceContainerHelper not in use" ); if( !bIsList && pData ) ((XInterface *)pData)->release(); @@ -356,7 +356,7 @@ void OInterfaceContainerHelper::clear() SAL_THROW( () ) { ClearableMutexGuard aGuard( rMutex ); OInterfaceIteratorHelper aIt( *this ); - // Container freigeben, falls im disposing neue Einträge kommen + // Release container, in case new entries come while disposing OSL_ENSURE( !bIsList || bInUse, "OInterfaceContainerHelper not in use" ); if( !bIsList && pData ) ((XInterface *)pData)->release(); diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx index fe455781a1a7..de814ac2835e 100644 --- a/cppuhelper/source/propshlp.cxx +++ b/cppuhelper/source/propshlp.cxx @@ -1168,7 +1168,7 @@ sal_Int32 OPropertyArrayHelper::fillHandles( sal_Int32 * pHandles, const Sequenc for( sal_Int32 i = 0; i < nReqLen; i++ ) { - // Logarithmus ermitteln + // Calculate logarithm sal_Int32 n = (sal_Int32)(pEnd - pCur); sal_Int32 nLog = 0; while( n ) @@ -1177,8 +1177,8 @@ sal_Int32 OPropertyArrayHelper::fillHandles( sal_Int32 * pHandles, const Sequenc n = n >> 1; } - // Anzahl der noch zu suchenden Properties * dem Log2 der verbleibenden - // zu dursuchenden Properties. + // Number of properties to search for * Log2 of the number of remaining + // properties to search in. if( (nReqLen - i) * nLog >= pEnd - pCur ) { // linear search is better