summaryrefslogtreecommitdiffstats
path: root/hwpfilter/source/formula.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'hwpfilter/source/formula.cxx')
-rw-r--r--hwpfilter/source/formula.cxx17
1 files changed, 0 insertions, 17 deletions
diff --git a/hwpfilter/source/formula.cxx b/hwpfilter/source/formula.cxx
index c29cbee12475..0729396a8fb1 100644
--- a/hwpfilter/source/formula.cxx
+++ b/hwpfilter/source/formula.cxx
@@ -165,7 +165,6 @@ void Formula::makeExpr(Node *res)
makeRoot(tmp);
break;
case ID_ARROWEXPR:
- makeArrow(tmp);
break;
case ID_ACCENTEXPR:
makeAccent(tmp);
@@ -181,10 +180,8 @@ void Formula::makeExpr(Node *res)
makeBlock(tmp);
//fall-through
case ID_BEGIN:
- makeBegin(tmp);
//fall-through
case ID_END:
- makeEnd(tmp);
break;
}
}
@@ -463,10 +460,6 @@ void Formula::makeRoot(Node *res)
rendEl("math:mroot");
#endif
}
-// DVO: add space to avoid warning
-void Formula::makeArrow(Node * /*res*/)
-{
-}
void Formula::makeAccent(Node *res)
{
makeDecoration( res );
@@ -575,16 +568,6 @@ void Formula::makeBlock(Node *res)
#endif
}
-// DVO: add space to avoid warning
-void Formula::makeBegin(Node * /*res*/)
-{
-}
-
-// DVO: add space to avoid warning
-void Formula::makeEnd(Node * /*res*/)
-{
-}
-
int Formula::parse()
{
Node *res = 0L;