diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-08-02 11:10:04 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-08-02 11:10:04 +0000 |
commit | a72664137ab96c884833b605c36bea74e74835b7 (patch) | |
tree | 7a3659fbe20a0718c136347fda49761fa66a1c8f /tools | |
parent | aa771e35102b8358582ca4f1c757dee46e8f35a1 (diff) |
#i10000# prevent warnings
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bootstrp/sstring.cxx | 14 |
1 files changed, 7 insertions, 7 deletions
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; |