summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-06-16 13:10:12 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-06-16 13:10:12 +0000
commite27c87edeb566f11006b2f859c0974b8b30a4455 (patch)
tree3b85d1c53285b9b15c27449b64a478625e2791b4 /configmgr
parentc13e2709a06f36b6fbb2c09c713a4540ac9a2afa (diff)
INTEGRATION: CWS sb88 (1.8.10); FILE MERGED
2008/06/03 15:29:55 sb 1.8.10.1: #i89553 applied patch by cmc
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/treemgr/viewstrategy.hxx16
1 files changed, 3 insertions, 13 deletions
diff --git a/configmgr/source/treemgr/viewstrategy.hxx b/configmgr/source/treemgr/viewstrategy.hxx
index 69e8a06d88..45e479bdd3 100644
--- a/configmgr/source/treemgr/viewstrategy.hxx
+++ b/configmgr/source/treemgr/viewstrategy.hxx
@@ -7,7 +7,7 @@
* OpenOffice.org - a multi-platform office productivity suite
*
* $RCSfile: viewstrategy.hxx,v $
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
* This file is part of OpenOffice.org.
*
@@ -112,10 +112,10 @@ namespace configmgr
/// Does this node assume its default value
/// retrieve the current value of this node
UnoAny getValue(ValueNode const& _aNode) const;
-
+#if OSL_DEBUG_LEVEL > 0
/// get the type of this value
UnoType getValueType(ValueNode const& _aNode) const;
-
+#endif
// group node specific operations
public:
@@ -178,15 +178,9 @@ namespace configmgr
// access to node innards
protected:
- /// provide access to the data of the underlying node
- data::NodeAccess getNodeAccess(Node const& _aNode) const;
-
/// provide access to the address of the underlying node
data::NodeAddress getNodeAddress(Node const& _aNode) const;
- /// retrieve the name of the underlying node
- Name getNodeName(Node const& _aNode) const;
-
/// retrieve the attributes of the underlying node
node::Attributes getNodeAttributes(Node const& _aNode) const;
@@ -239,10 +233,6 @@ namespace configmgr
virtual void doRemoveElement(SetNode const& _aNode, Name const& aName) = 0;
};
-//-----------------------------------------------------------------------------
- inline Name ViewStrategy::getName(Node const& _aNode) const
- { return getNodeName(_aNode); }
-
inline node::Attributes ViewStrategy::getAttributes(Node const& _aNode) const
{ return doAdjustAttributes(getNodeAttributes(_aNode)); }