summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-23 13:40:04 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-23 13:40:04 +0000
commitcc7256de7e821b7a3e511e9b9bcba10a8809ebd3 (patch)
treecb517f68be9b5bffa56be19b238e80307062687b /configmgr
parentddbfba8e75a78c6fe6054ce71e0b10eaa76872b6 (diff)
INTEGRATION: CWS configrefactor01 (1.12.24); FILE MERGED
2007/01/16 12:18:25 mmeeks 1.12.24.3: Submitted by: mmeeks Kill 'memory::Segment' - no longer needed. Bin some other (empty / redundant) headers. 2007/01/12 14:50:46 mmeeks 1.12.24.2: Another big prune of memory::Accessor ... 2007/01/11 10:35:37 mmeeks 1.12.24.1: Submitted by: mmeeks Large scale re-factoring, remove fine-grained locking in favor of a simple, single global lock (still in progress). Identify and fix various hot-spots. Remove otherwise empty / non-compiled files. Kill UpdateAccessor
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/treemgr/configgroup.cxx8
1 files changed, 3 insertions, 5 deletions
diff --git a/configmgr/source/treemgr/configgroup.cxx b/configmgr/source/treemgr/configgroup.cxx
index 9bc6833ae818..4851b65b94af 100644
--- a/configmgr/source/treemgr/configgroup.cxx
+++ b/configmgr/source/treemgr/configgroup.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: configgroup.cxx,v $
*
- * $Revision: 1.12 $
+ * $Revision: 1.13 $
*
- * last change: $Author: obo $ $Date: 2006-09-16 15:27:53 $
+ * last change: $Author: ihi $ $Date: 2007-11-23 14:40:04 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -378,9 +378,7 @@ GroupDefaulter::GroupDefaulter(Tree const& _aParentTree, NodeRef const& _aGroupN
//-----------------------------------------------------------------------------
bool GroupDefaulter::isDataAvailable(TreeRef const& _aParentTree, NodeRef const& _aGroupNode)
{
- data::Accessor aTempAccess( getRootSegment(_aParentTree) );
-
- Tree aTempTree(aTempAccess, _aParentTree);
+ Tree aTempTree(_aParentTree);
return aTempTree.areValueDefaultsAvailable(_aGroupNode);
}