summaryrefslogtreecommitdiff
path: root/configmgr/source/rootaccess.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'configmgr/source/rootaccess.hxx')
-rw-r--r--configmgr/source/rootaccess.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/configmgr/source/rootaccess.hxx b/configmgr/source/rootaccess.hxx
index abde6fc2771d..4c16a2932ea4 100644
--- a/configmgr/source/rootaccess.hxx
+++ b/configmgr/source/rootaccess.hxx
@@ -37,7 +37,6 @@
#include "access.hxx"
#include "modifications.hxx"
-#include "path.hxx"
namespace com { namespace sun { namespace star {
namespace uno {
@@ -62,7 +61,7 @@ public:
Components & components, OUString const & pathRepresenation,
OUString const & locale, bool update);
- virtual Path getAbsolutePath() override;
+ virtual std::vector<OUString> getAbsolutePath() override;
virtual void initBroadcaster(
Modifications::Node const & modifications, Broadcaster * broadcaster) override;
@@ -104,7 +103,7 @@ public:
private:
virtual ~RootAccess();
- virtual Path getRelativePath() override;
+ virtual std::vector<OUString> getRelativePath() override;
virtual OUString getRelativePathRepresentation() override;
@@ -122,7 +121,7 @@ private:
const override;
virtual void addSupportedServiceNames(
- std::vector< OUString > * services) override;
+ std::vector<OUString> * services) override;
virtual void initDisposeBroadcaster(Broadcaster * broadcaster) override;
@@ -143,7 +142,7 @@ private:
OUString pathRepresentation_;
OUString locale_;
- Path path_;
+ std::vector<OUString> path_;
rtl::Reference< Node > node_;
OUString name_;
ChangesListeners changesListeners_;