summaryrefslogtreecommitdiff
path: root/lingucomponent/source/spellcheck/spell/sspellimp.cxx
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:57:33 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2006-06-19 22:57:33 +0000
commitc4ed4e3081c086b31fb0e12dcd4ebac97c587ab4 (patch)
tree0eb69e820221f72f6cd800b7a8fd0b0b4091dcf1 /lingucomponent/source/spellcheck/spell/sspellimp.cxx
parent7fba6516c9284fb1c2ae9e6df9aae3111b844449 (diff)
INTEGRATION: CWS warnings01 (1.14.16); FILE MERGED
2006/05/23 23:10:45 sb 1.14.16.3: RESYNC: (1.15-1.16); FILE MERGED 2006/01/25 20:27:04 sb 1.14.16.2: RESYNC: (1.14-1.15); FILE MERGED 2005/12/07 11:18:46 os 1.14.16.1: #i53598# warnings removed
Diffstat (limited to 'lingucomponent/source/spellcheck/spell/sspellimp.cxx')
-rw-r--r--lingucomponent/source/spellcheck/spell/sspellimp.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/lingucomponent/source/spellcheck/spell/sspellimp.cxx b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
index 3debee5458b2..2ebded7d3350 100644
--- a/lingucomponent/source/spellcheck/spell/sspellimp.cxx
+++ b/lingucomponent/source/spellcheck/spell/sspellimp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: sspellimp.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: vg $ $Date: 2006-04-04 08:31:37 $
+ * last change: $Author: hr $ $Date: 2006-06-19 23:57:33 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -495,12 +495,12 @@ Reference< XSpellAlternatives >
aStr.realloc( numsug + count );
OUString *pStr = aStr.getArray();
- for (int i=0; i < count; i++)
+ for (int ii=0; ii < count; ii++)
{
- // if needed add: if (suglst[i] == NULL) continue;
- OUString cvtwrd(suglst[i],strlen(suglst[i]),aEnc);
- pStr[numsug + i] = cvtwrd;
- free(suglst[i]);
+ // if needed add: if (suglst[ii] == NULL) continue;
+ OUString cvtwrd(suglst[ii],strlen(suglst[ii]),aEnc);
+ pStr[numsug + ii] = cvtwrd;
+ free(suglst[ii]);
}
free(suglst);
numsug += count;
@@ -551,7 +551,7 @@ Reference< XSpellAlternatives > SAL_CALL
Reference< XInterface > SAL_CALL SpellChecker_CreateInstance(
- const Reference< XMultiServiceFactory > & rSMgr )
+ const Reference< XMultiServiceFactory > & /*rSMgr*/ )
throw(Exception)
{
@@ -594,7 +594,7 @@ sal_Bool SAL_CALL
OUString SAL_CALL
- SpellChecker::getServiceDisplayName( const Locale& rLocale )
+ SpellChecker::getServiceDisplayName( const Locale& /*rLocale*/ )
throw(RuntimeException)
{
MutexGuard aGuard( GetLinguMutex() );