summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-09-17 19:10:44 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-09-26 16:46:06 +0200
commit7e248d3558fe8385a99629cd721e7c7feafd9974 (patch)
tree176c9f0afa73e2134fc56490d98c552cb381d4b6 /hwpfilter
parentfaa2f029c16b8f25e88b054f22f69ef474fa289d (diff)
Fix ID_DELIMETER->ID_DELIMITER
It passed "make check" on Linux Change-Id: Ic119935ca45f985b3cd088b16db4128ffaf2d1a2 Reviewed-on: https://gerrit.libreoffice.org/60642 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/formula.cxx2
-rw-r--r--hwpfilter/source/grammar.cxx4
-rw-r--r--hwpfilter/source/nodes.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/hwpfilter/source/formula.cxx b/hwpfilter/source/formula.cxx
index 5ab06f91dd9b..74eb9f90c068 100644
--- a/hwpfilter/source/formula.cxx
+++ b/hwpfilter/source/formula.cxx
@@ -233,7 +233,7 @@ void Formula::makeIdentifier(Node *res)
#endif
break;
case ID_OPERATOR :
- case ID_DELIMETER :
+ case ID_DELIMITER :
{
#ifdef DEBUG
inds; fprintf(stderr,"<math:mo>%s</math:mo>\n",tmp->value); indo;
diff --git a/hwpfilter/source/grammar.cxx b/hwpfilter/source/grammar.cxx
index fe8a11de80bd..1e20afc22729 100644
--- a/hwpfilter/source/grammar.cxx
+++ b/hwpfilter/source/grammar.cxx
@@ -771,10 +771,10 @@ case 11:
{ yyval.ptr = new Node(ID_IDENTIFIER); yyval.ptr->value = strdup(yyvsp[0].str); debug("Identifier : %s\n",yyvsp[0].str); nodelist.push_back(yyval.ptr);
break;}
case 12:
-{ yyval.ptr = new Node(ID_DELIMETER); yyval.ptr->value = strdup(yyvsp[0].str); debug("Identifier : %s\n",yyvsp[0].str); nodelist.push_back(yyval.ptr);
+{ yyval.ptr = new Node(ID_DELIMITER); yyval.ptr->value = strdup(yyvsp[0].str); debug("Identifier : %s\n",yyvsp[0].str); nodelist.push_back(yyval.ptr);
break;}
case 13:
-{ yyval.ptr = new Node(ID_DELIMETER); yyval.ptr->value = strdup(yyvsp[0].str); debug("Identifier : %s\n",yyvsp[0].str); nodelist.push_back(yyval.ptr);
+{ yyval.ptr = new Node(ID_DELIMITER); yyval.ptr->value = strdup(yyvsp[0].str); debug("Identifier : %s\n",yyvsp[0].str); nodelist.push_back(yyval.ptr);
break;}
case 14:
{ yyval.ptr = new Node(ID_IDENTIFIER); yyval.ptr->value = strdup(yyvsp[0].str); debug("Identifier : %s\n",yyvsp[0].str); nodelist.push_back(yyval.ptr);
diff --git a/hwpfilter/source/nodes.h b/hwpfilter/source/nodes.h
index 61db3a818137..048a1289d472 100644
--- a/hwpfilter/source/nodes.h
+++ b/hwpfilter/source/nodes.h
@@ -60,7 +60,7 @@ enum IDLIST {
ID_NUMBER,
ID_OPERATOR,
ID_SPACE,
- ID_DELIMETER
+ ID_DELIMITER
};
class Node{