diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:48:34 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:48:34 +0000 |
commit | 7761b8a29a5281b9e561d1e968e41d1b88912292 (patch) | |
tree | 94f6075bd9ef2e79f41608708570d41e2da46e53 | |
parent | 2eb858276349ef381ee2183fa8a177b442ddd649 (diff) |
INTEGRATION: CWS warnings01 (1.6.12); FILE MERGED
2005/11/09 20:22:01 pl 1.6.12.3: #i53898# removed warnings
2005/11/07 20:10:33 pl 1.6.12.2: RESYNC: (1.6-1.7); FILE MERGED
2005/10/24 15:10:06 nn 1.6.12.1: #i53898# warning-free code
-rw-r--r-- | i18npool/source/search/textsearch.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/i18npool/source/search/textsearch.cxx b/i18npool/source/search/textsearch.cxx index aa5b65a6e241..46c778207052 100644 --- a/i18npool/source/search/textsearch.cxx +++ b/i18npool/source/search/textsearch.cxx @@ -4,9 +4,9 @@ * * $RCSfile: textsearch.cxx,v $ * - * $Revision: 1.7 $ + * $Revision: 1.8 $ * - * last change: $Author: kz $ $Date: 2005-11-01 14:57:03 $ + * last change: $Author: hr $ $Date: 2006-06-20 04:48:34 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -106,11 +106,11 @@ static const sal_Int32 COMPLEX_TRANS_MASK = // complex transliteration TextSearch::TextSearch(const Reference < XMultiServiceFactory > & rxMSF) - : pRegExp( 0 ) - , pWLD( 0 ) + : xMSF( rxMSF ) , pJumpTable( 0 ) , pJumpTable2( 0 ) - , xMSF( rxMSF ) + , pRegExp( 0 ) + , pWLD( 0 ) { SearchOptions aOpt; aOpt.algorithmType = SearchAlgorithms_ABSOLUTE; @@ -997,13 +997,13 @@ extern "C" { void SAL_CALL component_getImplementationEnvironment( - const sal_Char** ppEnvTypeName, uno_Environment** ppEnv ) + const sal_Char** ppEnvTypeName, uno_Environment** /*ppEnv*/ ) { *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME; } sal_Bool SAL_CALL component_writeInfo( - void* _pServiceManager, void* _pRegistryKey ) + void* /*_pServiceManager*/, void* _pRegistryKey ) { if (_pRegistryKey) { @@ -1022,7 +1022,7 @@ sal_Bool SAL_CALL component_writeInfo( } void* SAL_CALL component_getFactory( const sal_Char* sImplementationName, - void* _pServiceManager, void* _pRegistryKey ) + void* _pServiceManager, void* /*_pRegistryKey*/ ) { void* pRet = NULL; |