summaryrefslogtreecommitdiff
path: root/editors/openoffice.org-2.0-devel/files/patch-i68110
blob: f1322eec397f706d7eabba203165376415b75bb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Index: tools/bootstrp/sstring.cxx
===================================================================
RCS file: /cvs/util/tools/bootstrp/sstring.cxx,v
retrieving revision 1.6
diff -u -r1.6 sstring.cxx
--- tools/bootstrp/sstring.cxx	2 Aug 2006 12:10:04 -0000	1.6
+++ tools/bootstrp/sstring.cxx	10 Aug 2006 08:50:06 -0000
@@ -173,7 +173,7 @@
 
 SByteStringList& SByteStringList::operator<<  ( SvStream& rStream )
 {
-	ULONG nListCount;
+        sal_uInt32 nListCount;
 	rStream >> nListCount;
 	for ( USHORT i = 0; i < nListCount; i++ ) { 
         ByteString* pByteString = new ByteString();
@@ -185,7 +185,7 @@
 
 SByteStringList& SByteStringList::operator>>  ( SvStream& rStream )
 {
-	ULONG nListCount = Count();
+        sal_uInt32 nListCount = Count();
 	rStream << nListCount;
 	ByteString* pByteString = First();
 	while (pByteString) {