summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorRüdiger Timm <rt@openoffice.org>2003-12-01 14:56:47 +0000
committerRüdiger Timm <rt@openoffice.org>2003-12-01 14:56:47 +0000
commit608a4c3d0fbb38c9dbc2593c85d39fd46344f6f4 (patch)
tree503bad5cc7288ebce4f82351e66ef9429daeb703 /ucb
parent322e00a00416fc214b5c4f21f0c09f982bc52aa7 (diff)
INTEGRATION: CWS ooo20031110 (1.28.22); FILE MERGED
2003/11/10 13:55:01 waratah 1.28.22.1: #i22301# Correct for scoping rules
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/NeonSession.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/NeonSession.cxx b/ucb/source/ucp/webdav/NeonSession.cxx
index dbc244049960..1dc825f50487 100644
--- a/ucb/source/ucp/webdav/NeonSession.cxx
+++ b/ucb/source/ucp/webdav/NeonSession.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: NeonSession.cxx,v $
*
- * $Revision: 1.29 $
+ * $Revision: 1.30 $
*
- * last change: $Author: rt $ $Date: 2003-12-01 10:11:25 $
+ * last change: $Author: rt $ $Date: 2003-12-01 15:56:47 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -780,12 +780,13 @@ void NeonSession::PROPPATCH( const rtl::OUString & inPath,
*/
int theRetVal = NE_OK;
+ int n; // for the "for" loop
// Generate the list of properties we want to set.
int nPropCount = inValues.size();
ne_proppatch_operation* pItems
= new ne_proppatch_operation[ nPropCount + 1 ];
- for ( int n = 0; n < nPropCount; ++n )
+ for ( n = 0; n < nPropCount; ++n )
{
const ProppatchValue & rValue = inValues[ n ];