summaryrefslogtreecommitdiff
path: root/configmgr/source/childaccess.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/childaccess.hxx')
-rw-r--r--configmgr/source/childaccess.hxx14
1 files changed, 4 insertions, 10 deletions
diff --git a/configmgr/source/childaccess.hxx b/configmgr/source/childaccess.hxx
index d063a28c9c9c..f3948a08ab50 100644
--- a/configmgr/source/childaccess.hxx
+++ b/configmgr/source/childaccess.hxx
@@ -26,7 +26,6 @@
#include <vector>
#include <com/sun/star/container/XChild.hpp>
-#include <com/sun/star/lang/XUnoTunnel.hpp>
#include <com/sun/star/uno/Reference.hxx>
#include <com/sun/star/uno/Sequence.hxx>
#include <rtl/ref.hxx>
@@ -48,15 +47,13 @@ class Node;
class RootAccess;
class ChildAccess:
- public Access, public css::container::XChild,
- public css::lang::XUnoTunnel
+ public Access, public css::container::XChild
{
public:
- static css::uno::Sequence< sal_Int8 > const & getUnoTunnelId();
ChildAccess(
Components & components, rtl::Reference< RootAccess > const & root,
- rtl::Reference< Access > const & parent, OUString const & name,
+ rtl::Reference< Access > const & parent, OUString name,
rtl::Reference< Node > const & node);
ChildAccess(
@@ -67,11 +64,11 @@ public:
virtual std::vector<OUString> getRelativePath() override;
virtual OUString getRelativePathRepresentation() override;
- virtual rtl::Reference< Node > getNode() override;
+ virtual const rtl::Reference< Node > & getNode() override;
virtual bool isFinalized() override;
- virtual OUString getNameInternal() override;
+ virtual const OUString & getNameInternal() override;
virtual rtl::Reference< RootAccess > getRootAccess() override;
virtual rtl::Reference< Access > getParentAccess() override;
@@ -85,9 +82,6 @@ public:
virtual void SAL_CALL setParent(
css::uno::Reference< css::uno::XInterface > const &) override;
- virtual sal_Int64 SAL_CALL getSomething(
- css::uno::Sequence< sal_Int8 > const & aIdentifier) override;
-
void bind(
rtl::Reference< RootAccess > const & root,
rtl::Reference< Access > const & parent, OUString const & name)