diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 15:22:49 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 15:22:49 +0000 |
commit | a466a58b9dbd00565f753a662ca6890bf1a39e66 (patch) | |
tree | ee2122c7f72f4740890ec360a5809a207749d866 /xmloff/source/style | |
parent | 40810748dbdcf75c95d15c3fd1dc21a934661e82 (diff) |
INTEGRATION: CWS ooo20031110 (1.3.188); FILE MERGED
2003/11/11 11:03:33 waratah 1.3.188.1: #i22301# Correct for scoping rules
Diffstat (limited to 'xmloff/source/style')
-rw-r--r-- | xmloff/source/style/MultiPropertySetHelper.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/xmloff/source/style/MultiPropertySetHelper.cxx b/xmloff/source/style/MultiPropertySetHelper.cxx index 6a2761d0fe76..7ace5f251daf 100644 --- a/xmloff/source/style/MultiPropertySetHelper.cxx +++ b/xmloff/source/style/MultiPropertySetHelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: MultiPropertySetHelper.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: mib $ $Date: 2001-09-05 08:30:32 $ + * last change: $Author: rt $ $Date: 2003-12-01 16:22:49 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -160,7 +160,9 @@ void MultiPropertySetHelper::hasProperties( // construct pSequenceIndex sal_Int16 nNumberOfProperties = 0; - for( sal_Int16 i = 0; i < nLength; i++ ) + sal_Int16 i; + + for( i = 0; i < nLength; i++ ) { // ask for property sal_Bool bHasProperty = |