Fix bug in VFormula copy constructor.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2018-02-27 09:44:17 +02:00
parent 425fc7c532
commit 9088ad93be

View file

@ -89,7 +89,7 @@ VFormula &VFormula::operator=(const VFormula &formula)
VFormula::VFormula(const VFormula &formula)
: formula(formula.formula),
value(formula.value),
checkZero(formula.data),
checkZero(formula.checkZero),
data(formula.getData()),
toolId(formula.toolId),
postfix(formula.postfix),