summaryrefslogtreecommitdiff
path: root/xmloff/source/style/xmlexppr.cxx
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-12-01 15:23:48 +0000
committerRüdiger Timm <rt@openoffice.org>2003-12-01 15:23:48 +0000
commit7e7ced9f06b945a5fb248a5aa5267a1ea046a444 (patch)
tree91b123f1e4f5012d72a0603067aa3cd13b0dc7db /xmloff/source/style/xmlexppr.cxx
parentc63d063a73b31f9538dae2bd52da605a2dfdbd3e (diff)
INTEGRATION: CWS ooo20031110 (1.39.94); FILE MERGED
2003/11/11 11:03:35 waratah 1.39.94.1: #i22301# Correct for scoping rules
Diffstat (limited to 'xmloff/source/style/xmlexppr.cxx')
-rw-r--r--xmloff/source/style/xmlexppr.cxx8
1 files changed, 5 insertions, 3 deletions
diff --git a/xmloff/source/style/xmlexppr.cxx b/xmloff/source/style/xmlexppr.cxx
index 4fa8abd260ba..6515bf2f03dd 100644
--- a/xmloff/source/style/xmlexppr.cxx
+++ b/xmloff/source/style/xmlexppr.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlexppr.cxx,v $
*
- * $Revision: 1.39 $
+ * $Revision: 1.40 $
*
- * last change: $Author: hr $ $Date: 2003-03-27 18:20:35 $
+ * last change: $Author: rt $ $Date: 2003-12-01 16:23:48 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -413,7 +413,9 @@ void FilterPropertiesInfo_Impl::FillPropertyStateArray(
{
// step 1: get value count
sal_uInt32 nValueCount = 0;
- for( sal_uInt32 i = 0; i < nCount; i++, pStates++ )
+ sal_uInt32 i;
+
+ for( i = 0; i < nCount; i++, pStates++ )
{
if( *pStates == PropertyState_DIRECT_VALUE )
nValueCount++;