summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-07-14 15:42:46 +0200
committerNoel Grandin <noelgrandin@gmail.com>2015-07-15 09:33:55 +0000
commit8d5f4717064da45476ca2cb79fe1f778d346b241 (patch)
tree8dacb4bff290da24616f9af98127c2699433e49f /configmgr
parent04b472af1e1c9a3de4b8380305d2b4e8ce3a43df (diff)
loplugin:unusedmethods configmgr
Change-Id: Ie0338860717630633752a39814057c736d1faee8 Reviewed-on: https://gerrit.libreoffice.org/17059 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/source/groupnode.cxx4
-rw-r--r--configmgr/source/groupnode.hxx2
-rw-r--r--configmgr/source/localizedpropertynode.cxx4
-rw-r--r--configmgr/source/localizedpropertynode.hxx2
-rw-r--r--configmgr/source/node.cxx2
-rw-r--r--configmgr/source/node.hxx1
-rw-r--r--configmgr/source/setnode.cxx4
-rw-r--r--configmgr/source/setnode.hxx2
8 files changed, 0 insertions, 21 deletions
diff --git a/configmgr/source/groupnode.cxx b/configmgr/source/groupnode.cxx
index dabade56d87f..eab65427c252 100644
--- a/configmgr/source/groupnode.cxx
+++ b/configmgr/source/groupnode.cxx
@@ -71,10 +71,6 @@ Node::Kind GroupNode::kind() const {
return KIND_GROUP;
}
-void GroupNode::clear() {
- members_.clear();
-}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/configmgr/source/groupnode.hxx b/configmgr/source/groupnode.hxx
index 227084bf57d1..77067c4090ae 100644
--- a/configmgr/source/groupnode.hxx
+++ b/configmgr/source/groupnode.hxx
@@ -53,8 +53,6 @@ private:
virtual Kind kind() const SAL_OVERRIDE;
- virtual void clear() SAL_OVERRIDE;
-
bool extensible_;
NodeMap members_;
OUString templateName_;
diff --git a/configmgr/source/localizedpropertynode.cxx b/configmgr/source/localizedpropertynode.cxx
index 3b55dcfada34..49837c447dd6 100644
--- a/configmgr/source/localizedpropertynode.cxx
+++ b/configmgr/source/localizedpropertynode.cxx
@@ -59,10 +59,6 @@ Node::Kind LocalizedPropertyNode::kind() const {
return KIND_LOCALIZED_PROPERTY;
}
-void LocalizedPropertyNode::clear() {
- members_.clear();
-}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/configmgr/source/localizedpropertynode.hxx b/configmgr/source/localizedpropertynode.hxx
index 7c6da7b69059..1fe322fc60e9 100644
--- a/configmgr/source/localizedpropertynode.hxx
+++ b/configmgr/source/localizedpropertynode.hxx
@@ -50,8 +50,6 @@ private:
virtual Kind kind() const SAL_OVERRIDE;
- virtual void clear() SAL_OVERRIDE;
-
Type staticType_;
// as specified in the component-schema (TYPE_ANY, ...,
// TYPE_HEXBINARY_LIST; not TYPE_ERROR or TYPE_NIL)
diff --git a/configmgr/source/node.cxx b/configmgr/source/node.cxx
index 294ec0ecaa78..e476c9e65603 100644
--- a/configmgr/source/node.cxx
+++ b/configmgr/source/node.cxx
@@ -77,8 +77,6 @@ Node::Node(const Node & other):
Node::~Node() {}
-void Node::clear() {}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/configmgr/source/node.hxx b/configmgr/source/node.hxx
index 8bd000c7e207..0a90463466ef 100644
--- a/configmgr/source/node.hxx
+++ b/configmgr/source/node.hxx
@@ -58,7 +58,6 @@ protected:
Node(const Node & other);
virtual ~Node();
- virtual void clear();
int layer_;
int finalized_;
diff --git a/configmgr/source/setnode.cxx b/configmgr/source/setnode.cxx
index ad259cc9fd9d..b26188d97192 100644
--- a/configmgr/source/setnode.cxx
+++ b/configmgr/source/setnode.cxx
@@ -107,10 +107,6 @@ Node::Kind SetNode::kind() const {
return KIND_SET;
}
-void SetNode::clear() {
- members_.clear();
-}
-
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/configmgr/source/setnode.hxx b/configmgr/source/setnode.hxx
index 92774b36e344..59109d78acb0 100644
--- a/configmgr/source/setnode.hxx
+++ b/configmgr/source/setnode.hxx
@@ -61,8 +61,6 @@ private:
virtual Kind kind() const SAL_OVERRIDE;
- virtual void clear() SAL_OVERRIDE;
-
OUString defaultTemplateName_;
std::vector< OUString > additionalTemplateNames_;
NodeMap members_;