summaryrefslogtreecommitdiff
path: root/configmgr/source/readwriteaccess.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/readwriteaccess.cxx')
-rw-r--r--configmgr/source/readwriteaccess.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/configmgr/source/readwriteaccess.cxx b/configmgr/source/readwriteaccess.cxx
index e503d9d556fe..19f0eb4a09b9 100644
--- a/configmgr/source/readwriteaccess.cxx
+++ b/configmgr/source/readwriteaccess.cxx
@@ -104,6 +104,19 @@ private:
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
{ return getRoot()->getPendingChanges(); }
+ css::beans::Property SAL_CALL getPropertyByHierarchicalName(
+ OUString const & aHierarchicalName)
+ throw (
+ css::beans::UnknownPropertyException, css::uno::RuntimeException,
+ std::exception)
+ SAL_OVERRIDE
+ { return getRoot()->getPropertyByHierarchicalName(aHierarchicalName); }
+
+ sal_Bool SAL_CALL hasPropertyByHierarchicalName(
+ OUString const & aHierarchicalName)
+ throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE
+ { return getRoot()->hasPropertyByHierarchicalName(aHierarchicalName); }
+
rtl::Reference< RootAccess > getRoot();
css::uno::Reference< css::uno::XComponentContext > context_;