summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorJörg Barfurth <jb@openoffice.org>2001-10-22 07:44:35 +0000
committerJörg Barfurth <jb@openoffice.org>2001-10-22 07:44:35 +0000
commita75657d0a712de14da7a53dba0d091766ea601c7 (patch)
tree9bed977ae1882332fb41912397d4b35908f1f5f8 /configmgr
parent2465acc3eaa41adb570f3bbaa0c71be989eb9837 (diff)
#90321# Incorrect change detection in sets
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/treemgr/nodechangeimpl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/configmgr/source/treemgr/nodechangeimpl.cxx b/configmgr/source/treemgr/nodechangeimpl.cxx
index 73e913b58eb4..a2d22c219d07 100644
--- a/configmgr/source/treemgr/nodechangeimpl.cxx
+++ b/configmgr/source/treemgr/nodechangeimpl.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: nodechangeimpl.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: jb $ $Date: 2001-09-28 12:44:39 $
+ * last change: $Author: jb $ $Date: 2001-10-22 08:44:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -722,7 +722,7 @@ SetReplaceImpl::SetReplaceImpl(Path::Component const& aName, ElementTreeHolder c
/// checks, if this represents an actual change
bool SetReplaceImpl::doIsChange() const
{
- return !!(m_aOldTree == m_aNewTree);
+ return !(m_aOldTree == m_aNewTree);
}
//-----------------------------------------------------------------------------