diff options
author | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 15:05:16 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2003-12-01 15:05:16 +0000 |
commit | 096f03813099f775df652bd2a8de2bf4a66bf294 (patch) | |
tree | a801497074c89ab9c2ab10fc06fc0902d9905e7d /configmgr/source/api | |
parent | 608a4c3d0fbb38c9dbc2593c85d39fd46344f6f4 (diff) |
INTEGRATION: CWS ooo20031110 (1.10.54); FILE MERGED
2003/11/10 12:20:21 waratah 1.10.54.1: #i22301# Correct for scoping rules
Diffstat (limited to 'configmgr/source/api')
-rw-r--r-- | configmgr/source/api/confeventhelpers.cxx | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/configmgr/source/api/confeventhelpers.cxx b/configmgr/source/api/confeventhelpers.cxx index 21cb4a63012c..d185ccfd40af 100644 --- a/configmgr/source/api/confeventhelpers.cxx +++ b/configmgr/source/api/confeventhelpers.cxx @@ -2,9 +2,9 @@ * * $RCSfile: confeventhelpers.cxx,v $ * - * $Revision: 1.10 $ + * $Revision: 1.11 $ * - * last change: $Author: hr $ $Date: 2003-03-19 16:18:23 $ + * last change: $Author: rt $ $Date: 2003-12-01 16:05:16 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -156,6 +156,8 @@ void ConfigChangesBroadcasterImpl::remove(INodeListenerRef const& pListener) static Change const* resolvePath(Change const& rChange, RelativePath& aRelativePath, RemoveNode const*& pRemoveNode) { + RelativePath::Iterator aIter; + OSL_ASSERT(pRemoveNode == NULL); pRemoveNode = NULL; @@ -165,7 +167,7 @@ static Change const* resolvePath(Change const& rChange, RelativePath& aRelativeP RelativePath::Iterator const aEnd(aRelativePath.end()); - for( RelativePath::Iterator aIter = aRelativePath.begin(); + for( aIter = aRelativePath.begin(); aIter != aEnd; ++aIter) { |