diff options
author | Noel Grandin <noel@peralex.com> | 2014-06-09 10:09:42 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-06-09 10:10:13 +0200 |
commit | 184a00b96235f6432294ded63ce4a4a318effdb5 (patch) | |
tree | e4ae0e00cb168fa43d280cfb51a50515258b5320 /configmgr/source/propertynode.cxx | |
parent | 534015ad4fd08823b4393dab1ad5d42dedd7bf62 (diff) |
loplugin: inlinesimplememberfunctions
Change-Id: I42119f656ca528286fb25d2d36c0af54b7d04a6b
Diffstat (limited to 'configmgr/source/propertynode.cxx')
-rw-r--r-- | configmgr/source/propertynode.cxx | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/configmgr/source/propertynode.cxx b/configmgr/source/propertynode.cxx index bec6918dda9d..456091359ebf 100644 --- a/configmgr/source/propertynode.cxx +++ b/configmgr/source/propertynode.cxx @@ -46,13 +46,7 @@ rtl::Reference< Node > PropertyNode::clone(bool) const { return new PropertyNode(*this); } -Type PropertyNode::getStaticType() const { - return staticType_; -} -bool PropertyNode::isNillable() const { - return nillable_; -} css::uno::Any PropertyNode::getValue(Components & components) { if (!externalDescriptor_.isEmpty()) { @@ -81,9 +75,6 @@ void PropertyNode::setExternal(int layer, OUString const & descriptor) { externalDescriptor_ = descriptor; } -bool PropertyNode::isExtension() const { - return extension_; -} PropertyNode::PropertyNode(PropertyNode const & other): Node(other), staticType_(other.staticType_), nillable_(other.nillable_), |