diff options
author | Jörg Barfurth <jb@openoffice.org> | 2001-05-31 10:49:31 +0000 |
---|---|---|
committer | Jörg Barfurth <jb@openoffice.org> | 2001-05-31 10:49:31 +0000 |
commit | 8b872fdf6edd42dc1e653a30186b42a378150e4a (patch) | |
tree | c06154697f6790d537598fab6f8bee0cd3d97be0 /configmgr/source | |
parent | 4b27e63e3f5c2594da75ee3829a29bee76c3b454 (diff) |
#85159# Merge fix from SOW: Forgotten member in swap
Diffstat (limited to 'configmgr/source')
-rw-r--r-- | configmgr/source/tree/cmtreemodel.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/configmgr/source/tree/cmtreemodel.cxx b/configmgr/source/tree/cmtreemodel.cxx index 24a17a8d2a51..3fb0e44391cd 100644 --- a/configmgr/source/tree/cmtreemodel.cxx +++ b/configmgr/source/tree/cmtreemodel.cxx @@ -2,9 +2,9 @@ * * $RCSfile: cmtreemodel.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: jb $ $Date: 2001-04-05 14:43:14 $ + * last change: $Author: jb $ $Date: 2001-05-31 11:49:31 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -127,6 +127,7 @@ void SubtreeChange::swap(SubtreeChange& aOther) m_aChanges.swap(aOther.m_aChanges); std::swap(m_sTemplateName, aOther.m_sTemplateName); std::swap(m_sTemplateModule, aOther.m_sTemplateModule); + std::swap(m_aAttributes, aOther.m_aAttributes); } //-------------------------------------------------------------------------- |