summaryrefslogtreecommitdiffstats
path: root/configmgr/source/modifications.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/modifications.hxx
parentRe-introduce two lines apparently accidentally removed yesterday (diff)
downloadcore-89e0663c55f7f1763536a345d63111115c71ef26.tar.gz
core-89e0663c55f7f1763536a345d63111115c71ef26.zip
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/modifications.hxx')
-rw-r--r--configmgr/source/modifications.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/configmgr/source/modifications.hxx b/configmgr/source/modifications.hxx
index 5549e14a4d7c..7aa93bf53381 100644
--- a/configmgr/source/modifications.hxx
+++ b/configmgr/source/modifications.hxx
@@ -26,8 +26,6 @@
#include <config_dconf.h>
-#include "path.hxx"
-
namespace configmgr {
class Modifications {
@@ -42,9 +40,9 @@ public:
~Modifications();
- void add(Path const & path);
+ void add(std::vector<OUString> const & path);
- void remove(Path const & path);
+ void remove(std::vector<OUString> const & path);
#if ENABLE_DCONF
void clear() { root_.children.clear(); }