summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJörg Barfurth <jb@openoffice.org>2001-04-03 15:29:28 +0000
committerJörg Barfurth <jb@openoffice.org>2001-04-03 15:29:28 +0000
commit2f0378a16b686235e62070af11ffa94aadbd75ca (patch)
tree5735944fbcaac408e2e4d9d50896a2b7abd70fda /configmgr
parent256499c0ddcd8f69a06f3c1bd5dd846f8cf70643 (diff)
Corrected logic error in OIdPropagator
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 09c508f77912..e863e391b8c3 100644
--- a/configmgr/source/tree/treeactions.cxx
+++ b/configmgr/source/tree/treeactions.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: treeactions.cxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: jl $ $Date: 2001-03-21 12:26:09 $
+ * last change: $Author: jb $ $Date: 2001-04-03 16:29:28 $
*
* 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);