summaryrefslogtreecommitdiff
path: root/hwpfilter
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-06-01 12:54:31 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-06-03 09:08:42 +0000
commitf3c1d240bd4f32d014db00a9864c56f77b7cb127 (patch)
treeff952e1002ed98d1a0d537193f7bd15aac64b1c9 /hwpfilter
parent643b70006fd5f6762561696421808f20d4e1e86f (diff)
loplugin:constantparams
Change-Id: Ib162ba9297b9d900ea42c7e5216e152d3e58a361 Reviewed-on: https://gerrit.libreoffice.org/25769 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'hwpfilter')
-rw-r--r--hwpfilter/source/formula.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hwpfilter/source/formula.h b/hwpfilter/source/formula.h
index a4cddc2e8c8a..b87f362d3ae8 100644
--- a/hwpfilter/source/formula.h
+++ b/hwpfilter/source/formula.h
@@ -37,11 +37,11 @@ using namespace ::com::sun::star::xml::sax;
class Formula
{
public:
- Formula(char *_eq, int _ishwpeq = 1)
+ Formula(char *_eq)
: pList(NULL)
{
eq = _eq;
- isHwpEQ = _ishwpeq;
+ isHwpEQ = 1;
trim();
}
virtual ~Formula(){ }