summaryrefslogtreecommitdiff
path: root/configmgr/source/rootaccess.hxx
diff options
context:
space:
mode:
authorJakub Trzebiatowski <ubap.dev@gmail.com>2016-03-07 19:48:23 +0100
committerNoel Grandin <noelgrandin@gmail.com>2016-03-15 06:26:57 +0000
commit89e0663c55f7f1763536a345d63111115c71ef26 (patch)
treebb9a3a82a3f462cb72242e02c0a974285a80d40a /configmgr/source/rootaccess.hxx
parent869262bcc980d1d964036dbaba87a456479f53b7 (diff)
tdf#96099 fix trival typedefs, Path to std::vector<OUString>
Change-Id: I23fca48becbfdfd92db02a11b739a668fc1cd8c4 Reviewed-on: https://gerrit.libreoffice.org/23007 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
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_;