diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 14:56:34 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 14:56:34 +0000 |
commit | 322e00a00416fc214b5c4f21f0c09f982bc52aa7 (patch) | |
tree | 4076c1a204134802454f37d100eca1f4bb69790d /ucb | |
parent | 67944f74e98f65f4968f47089717d1d3fe2b55f6 (diff) |
INTEGRATION: CWS ooo20031110 (1.12.50); FILE MERGED
2003/11/10 13:55:00 waratah 1.12.50.1: #i22301# Correct for scoping rules
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/webdav/NeonPropFindRequest.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ucb/source/ucp/webdav/NeonPropFindRequest.cxx b/ucb/source/ucp/webdav/NeonPropFindRequest.cxx index 849b84ce43c4..6212eaa6a0db 100644 --- a/ucb/source/ucp/webdav/NeonPropFindRequest.cxx +++ b/ucb/source/ucp/webdav/NeonPropFindRequest.cxx @@ -2,9 +2,9 @@ * * $RCSfile: NeonPropFindRequest.cxx,v $ * - * $Revision: 1.12 $ + * $Revision: 1.13 $ * - * last change: $Author: hr $ $Date: 2003-03-27 17:27:19 $ + * last change: $Author: rt $ $Date: 2003-12-01 15:56:34 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -268,7 +268,9 @@ NeonPropFindRequest::NeonPropFindRequest( HttpSession* inSession, if ( thePropCount > 0 ) { NeonPropName* thePropNames = new NeonPropName[ thePropCount + 1 ]; - for ( int theIndex = 0; theIndex < thePropCount; theIndex ++ ) + int theIndex; + + for ( theIndex = 0; theIndex < thePropCount; theIndex ++ ) { // Split fullname into namespace and name! DAVProperties::createNeonPropName( |