diff options
author | sb <sb@openoffice.org> | 2009-07-23 12:42:37 +0200 |
---|---|---|
committer | sb <sb@openoffice.org> | 2009-07-23 12:42:37 +0200 |
commit | f3e1ef5d6401f65a08c84b9bde5bdaa8a1aff3fe (patch) | |
tree | 0c8d63d95f41dab8f459d2230b38303c6f13914d /configmgr2/source/propertynode.cxx | |
parent | 835ba8075f916d0c0c92ea5ca1f95356e3874dde (diff) |
#i101955# work in progress of a configmgr reimplementation, continued (for now in an extra module "configmgr2")
Diffstat (limited to 'configmgr2/source/propertynode.cxx')
-rw-r--r-- | configmgr2/source/propertynode.cxx | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/configmgr2/source/propertynode.cxx b/configmgr2/source/propertynode.cxx index d1dde7419c10..9b64256dc659 100644 --- a/configmgr2/source/propertynode.cxx +++ b/configmgr2/source/propertynode.cxx @@ -58,10 +58,6 @@ rtl::Reference< Node > PropertyNode::clone() const { return new PropertyNode(getLayer(), type_, nillable_, value_, extension_); } -rtl::Reference< Node > PropertyNode::getMember(rtl::OUString const &) { - return rtl::Reference< Node >(); -} - Type PropertyNode::getType() const { return type_; } @@ -74,7 +70,8 @@ css::uno::Any PropertyNode::getValue() const { return value_; } -void PropertyNode::setValue(css::uno::Any const & value) { +void PropertyNode::setValue(int layer, css::uno::Any const & value) { + resurrect(layer); value_ = value; } |