diff options
author | Jörg Barfurth <jb@openoffice.org> | 2001-02-12 09:33:51 +0000 |
---|---|---|
committer | Jörg Barfurth <jb@openoffice.org> | 2001-02-12 09:33:51 +0000 |
commit | 6536c5769af1ec3fb1b68195ebb4a3ffaa8ee5dd (patch) | |
tree | b5c43dd230271e76537b6f15d194b139156aa6b9 /configmgr | |
parent | 0fac52c96015c18397e548f8cb2f49ff3c020cbd (diff) |
Remove 2nd argument to findElement (which should never have got checked in ...)
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/treemgr/nodechangeimpl.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/configmgr/source/treemgr/nodechangeimpl.cxx b/configmgr/source/treemgr/nodechangeimpl.cxx index 69945d1bd241..ac6586250f9f 100644 --- a/configmgr/source/treemgr/nodechangeimpl.cxx +++ b/configmgr/source/treemgr/nodechangeimpl.cxx @@ -2,9 +2,9 @@ * * $RCSfile: nodechangeimpl.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: jb $ $Date: 2001-02-07 16:26:28 $ + * last change: $Author: jb $ $Date: 2001-02-12 10:33:51 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -618,7 +618,7 @@ bool SetInsertTreeImpl::doFillChange(NodeChangeInfo& rChange) const void SetInsertTreeImpl::doTestElement( SetNodeImpl& rNode, Name const& aName) { - SetEntry anEntry = rNode.findElement(aName,true); // require loaded children + SetEntry anEntry = rNode.findElement(aName); // require loaded children OSL_ENSURE(!anEntry.isValid(), "ERROR: Configuration: Adding a node that already exists"); } //----------------------------------------------------------------------------- @@ -678,7 +678,7 @@ void SetReplaceTreeImpl::doTestElement( SetNodeImpl& rNode, Name const& aName) OSL_ASSERT(!m_aOldTree.isValid()); // already tested ? // remove the old node - SetEntry anEntry = rNode.findElement(aName,true); // require loaded children + SetEntry anEntry = rNode.findElement(aName); // require loaded children OSL_ENSURE(anEntry.isValid(), "ERROR: Configuration: Replacing a node that doesn't exist"); m_aOldTree = anEntry.tree(); @@ -743,7 +743,7 @@ void SetRemoveTreeImpl::doTestElement( SetNodeImpl& rNode, Name const& aName) OSL_ASSERT(!m_aOldTree.isValid()); // already tested ? // remove the old node - SetEntry anEntry = rNode.findElement(aName,true); // require loaded children + SetEntry anEntry = rNode.findElement(aName); // require loaded children OSL_ENSURE(anEntry.isValid(), "ERROR: Configuration: Removing a node that doesn't exist"); m_aOldTree = anEntry.tree(); |