diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:13:25 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-19 11:13:25 +0000 |
commit | e44e9ed6ccfa5015970f259006e07e651ba4d541 (patch) | |
tree | 3568020c769ea1ade17d6be44667eabc3610189d | |
parent | bc44e76b1db9dbecac80d6105a885952c9e2ce0d (diff) |
INTEGRATION: CWS warnings01 (1.2.176); FILE MERGED
2005/09/22 19:03:17 sb 1.2.176.2: RESYNC: (1.2-1.3); FILE MERGED
2005/09/01 12:15:32 sb 1.2.176.1: #i53898# Made code warning-free.
-rw-r--r-- | ucbhelper/source/provider/resultsethelper.cxx | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/ucbhelper/source/provider/resultsethelper.cxx b/ucbhelper/source/provider/resultsethelper.cxx index 55c179924e91..e48d3b3b2985 100644 --- a/ucbhelper/source/provider/resultsethelper.cxx +++ b/ucbhelper/source/provider/resultsethelper.cxx @@ -4,9 +4,9 @@ * * $RCSfile: resultsethelper.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: rt $ $Date: 2005-09-09 16:40:58 $ + * last change: $Author: hr $ $Date: 2006-06-19 12:13:25 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -78,16 +78,13 @@ using namespace ucb; //========================================================================= //========================================================================= -#define RESULTSETHELPER_INIT() \ - m_xSMgr( rxSMgr ), \ - m_pDisposeEventListeners( 0 ), \ - m_bInitDone( sal_False ), \ - m_bStatic( sal_False ) - //========================================================================= ResultSetImplHelper::ResultSetImplHelper( const Reference< XMultiServiceFactory >& rxSMgr ) -: RESULTSETHELPER_INIT() +: m_pDisposeEventListeners( 0 ), + m_bStatic( sal_False ), + m_bInitDone( sal_False ), + m_xSMgr( rxSMgr ) { } @@ -95,8 +92,11 @@ ResultSetImplHelper::ResultSetImplHelper( ResultSetImplHelper::ResultSetImplHelper( const Reference< XMultiServiceFactory >& rxSMgr, const OpenCommandArgument2& rCommand ) -: RESULTSETHELPER_INIT(), - m_aCommand( rCommand ) +: m_pDisposeEventListeners( 0 ), + m_bStatic( sal_False ), + m_bInitDone( sal_False ), + m_aCommand( rCommand ), + m_xSMgr( rxSMgr ) { } |