summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJörg Barfurth <jb@openoffice.org>2001-04-18 10:46:41 +0000
committerJörg Barfurth <jb@openoffice.org>2001-04-18 10:46:41 +0000
commit445d439fa6be33288047b9f6dcdc45daf7318661 (patch)
tree34e628ec76f70233aa9f4686fbf2e02cf511e62c /configmgr
parent9f139f996f4fd1f266c0d40ede369f8b04e14e02 (diff)
Fix: backed out logic error in OIdPropagator introduced in rev 1.8
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/tree/treeactions.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/tree/treeactions.cxx b/configmgr/source/tree/treeactions.cxx
index 3fd6af45dcba..0739bb1fdf15 100644
--- a/configmgr/source/tree/treeactions.cxx
+++ b/configmgr/source/tree/treeactions.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: treeactions.cxx,v $
*
- * $Revision: 1.9 $
+ * $Revision: 1.10 $
*
- * last change: $Author: lla $ $Date: 2001-04-11 11:40:46 $
+ * last change: $Author: jb $ $Date: 2001-04-18 11:46:41 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,7 +79,7 @@ namespace configmgr
void OIdPropagator::propagateIdToChildren(ISubtree& rTree)
{
- if (!rTree.hasId())
+ if (rTree.hasId())
{
OIdPropagator aAction(rTree.getId());
aAction.applyToChildren(rTree);