summaryrefslogtreecommitdiff
path: root/configmgr/source/access.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/access.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/access.hxx')
-rw-r--r--configmgr/source/access.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/configmgr/source/access.hxx b/configmgr/source/access.hxx
index 5a71adb6f569..63cba6907a5f 100644
--- a/configmgr/source/access.hxx
+++ b/configmgr/source/access.hxx
@@ -62,7 +62,6 @@
#include <sal/types.h>
#include "modifications.hxx"
-#include "path.hxx"
#include "type.hxx"
namespace com { namespace sun { namespace star {
@@ -120,8 +119,8 @@ public:
void markChildAsModified(rtl::Reference< ChildAccess > const & child);
void releaseChild(OUString const & name);
- virtual Path getAbsolutePath() = 0;
- virtual Path getRelativePath() = 0;
+ virtual std::vector<OUString> getAbsolutePath() = 0;
+ virtual std::vector<OUString> getRelativePath() = 0;
virtual OUString getRelativePathRepresentation() = 0;
virtual rtl::Reference< Node > getNode() = 0;
@@ -438,7 +437,7 @@ protected:
const = 0;
virtual void addSupportedServiceNames(
- std::vector< OUString > * services) = 0;
+ std::vector<OUString> * services) = 0;
virtual void initDisposeBroadcaster(Broadcaster * broadcaster);
virtual void clearListeners() throw ();