"," can't be argument separator in C locale. Parser will return error for big

numbers.

--HG--
branch : feature
This commit is contained in:
Roman Telezhynskyi 2015-02-10 14:46:11 +02:00
parent 7176bd0668
commit 420f2e1da7

View File

@ -245,7 +245,8 @@ qreal* Calculator::AddVariable(const QString &a_szName, void *a_pUserData)
*/
void Calculator::SetSepForEval()
{
SetArgSep(',');
SetArgSep(';');
SetThousandsSep(',');
SetDecSep('.');
}