diff options
author | Rüdiger Timm <rt@openoffice.org> | 2008-06-16 13:10:12 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2008-06-16 13:10:12 +0000 |
commit | 1c7a6bdc6c65b775972c694fe873a705adda3b78 (patch) | |
tree | 65fad88e6b3a02857b8800cb45524fcd2b929151 /configmgr | |
parent | f39fbd44bb2f8fcb9ea48432344817ffb45be41f (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.hxx | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/configmgr/source/treemgr/viewstrategy.hxx b/configmgr/source/treemgr/viewstrategy.hxx index 115b95460c87..61efa4f9a049 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)); } |