diff options
author | Jakub Trzebiatowski <ubap.dev@gmail.com> | 2016-03-07 19:48:23 +0100 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-03-15 06:26:57 +0000 |
commit | 89e0663c55f7f1763536a345d63111115c71ef26 (patch) | |
tree | bb9a3a82a3f462cb72242e02c0a974285a80d40a /configmgr/source/components.hxx | |
parent | 869262bcc980d1d964036dbaba87a456479f53b7 (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/components.hxx')
-rw-r--r-- | configmgr/source/components.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configmgr/source/components.hxx b/configmgr/source/components.hxx index 48ec3a8a397b..1ca24d638087 100644 --- a/configmgr/source/components.hxx +++ b/configmgr/source/components.hxx @@ -33,7 +33,6 @@ #include "additions.hxx" #include "data.hxx" #include "modifications.hxx" -#include "path.hxx" namespace com { namespace sun { namespace star { namespace beans { class XPropertySet; } @@ -59,7 +58,7 @@ public: rtl::Reference< Node > resolvePathRepresentation( OUString const & pathRepresentation, - OUString * canonicRepresenation, Path * path, int * finalizedLayer) + OUString * canonicRepresenation, std::vector<OUString> * path, int * finalizedLayer) const; rtl::Reference< Node > getTemplate( @@ -74,7 +73,7 @@ public: rtl::Reference< RootAccess > const & exclude, Broadcaster * broadcaster); - void addModification(Path const & path); + void addModification(std::vector<OUString> const & path); void writeModifications(); |