From a72664137ab96c884833b605c36bea74e74835b7 Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Wed, 2 Aug 2006 11:10:04 +0000 Subject: #i10000# prevent warnings --- tools/bootstrp/sstring.cxx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'tools/bootstrp') diff --git a/tools/bootstrp/sstring.cxx b/tools/bootstrp/sstring.cxx index fc1251a41dce..7a1669ea1728 100644 --- a/tools/bootstrp/sstring.cxx +++ b/tools/bootstrp/sstring.cxx @@ -4,9 +4,9 @@ * * $RCSfile: sstring.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: ihi $ $Date: 2006-08-01 09:20:02 $ + * last change: $Author: kz $ $Date: 2006-08-02 12:10:04 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -173,9 +173,9 @@ void SByteStringList::CleanUp() SByteStringList& SByteStringList::operator<< ( SvStream& rStream ) { - ULONG nCount; - rStream >> nCount; - for ( USHORT i = 0; i < nCount; i++ ) { + ULONG nListCount; + rStream >> nListCount; + for ( USHORT i = 0; i < nListCount; i++ ) { ByteString* pByteString = new ByteString(); rStream >> *pByteString; Insert (pByteString, LIST_APPEND); @@ -185,8 +185,8 @@ SByteStringList& SByteStringList::operator<< ( SvStream& rStream ) SByteStringList& SByteStringList::operator>> ( SvStream& rStream ) { - ULONG nCount = Count(); - rStream << nCount; + ULONG nListCount = Count(); + rStream << nListCount; ByteString* pByteString = First(); while (pByteString) { rStream << *pByteString; -- cgit