Case realization parameters. Fix logical bug

This commit is contained in:
Bjørn Erik Jensen 2018-05-30 09:55:30 +02:00
parent 56d0112b07
commit 2bd1bd777c

View File

@ -47,7 +47,7 @@ public:
void setValue(double value);
void setValue(const QString& value);
bool isValid() const { return m_valueType == TYPE_NONE; }
bool isValid() const { return m_valueType != TYPE_NONE; }
bool isNumeric() const { return m_valueType == TYPE_NUMERIC; }
bool isText() const { return m_valueType == TYPE_TEXT; }