summaryrefslogtreecommitdiff
path: root/idlc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-09-19 09:48:19 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-09-19 10:44:05 +0000
commit1658bd231bc662504a072097dc614c29fe2e116d (patch)
tree00e1036c841aa7c228d443c34cdc5e88b8054ea3 /idlc
parent4f86b7a86cae630c19f6f0d1b4d6672c25e2eb3c (diff)
loplugin:unusedenumvalues
Change-Id: I9dcc9f73af6db5b4f7cc946bc28931e5c230b34c Reviewed-on: https://gerrit.libreoffice.org/29012 Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk> Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'idlc')
-rw-r--r--idlc/inc/astdeclaration.hxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/idlc/inc/astdeclaration.hxx b/idlc/inc/astdeclaration.hxx
index c6a76d9aa4a2..9cbd8c95e248 100644
--- a/idlc/inc/astdeclaration.hxx
+++ b/idlc/inc/astdeclaration.hxx
@@ -27,12 +27,11 @@ class AstScope;
// Enum defining the different kinds of Ast nodes
enum NodeType
{
- NT_object, // Denotes an object
- NT_service, // Denotes an servcie
+ NT_service, // Denotes a service
NT_interface_member, // Denotes an interface which is exported from object
- NT_service_member, // Denotes an service which is exported from object
+ NT_service_member, // Denotes a service which is exported from object
NT_observes, // Denotes an observed interface
- NT_needs, // Denotes an needed service
+ NT_needs, // Denotes a needed service
NT_module, // Denotes a module
NT_root, // Denotes the root of AST
NT_interface, // Denotes an interface