diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 15:16:08 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 15:16:08 +0000 |
commit | 4b87c0bdbf6735b8afbfdfef3c57a8cf7aa9bf94 (patch) | |
tree | e653eae4eb5fa65fc84c3b2cdffab36272467376 /transex3/source | |
parent | fabb14c9c3e2216abf08233f138af7b6eead407d (diff) |
INTEGRATION: CWS ooo20031110 (1.11.42); FILE MERGED
2003/11/10 12:52:23 waratah 1.11.42.1: #i22301# Correct for scoping rules
Diffstat (limited to 'transex3/source')
-rw-r--r-- | transex3/source/merge.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/transex3/source/merge.cxx b/transex3/source/merge.cxx index d240121c7ec3..35c3f244efbe 100644 --- a/transex3/source/merge.cxx +++ b/transex3/source/merge.cxx @@ -2,9 +2,9 @@ * * $RCSfile: merge.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: hr $ $Date: 2003-03-27 17:10:48 $ + * last change: $Author: rt $ $Date: 2003-12-01 16:16:08 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -349,9 +349,10 @@ void MergeDataFile::InsertEntry( { MergeData *pData; BOOL bFound = FALSE; + long int i; // search for MergeData - for ( long int i = Count() - 1; i >= 0 && !bFound; i-- ) { + for ( i = Count() - 1; i >= 0 && !bFound; i-- ) { pData = GetObject( i ); if (( pData->sLID == rLID ) && ( pData->sGID == rGID ) && |