diff options
| author | 2017-04-27 18:17:03 +0200 | |
|---|---|---|
| committer | 2017-04-27 18:17:03 +0200 | |
| commit | 9b2839b6f09177bda6b3654c56a750f84173123a (patch) | |
| tree | 259cbab92ad580b11ddd4a01bd8fa53b151a237c /parsingtoolbox.h | |
| parent | 026ca5cb4829cd4c4ad6b945e27479303e96fe82 (diff) | |
| download | OneRoll-9b2839b6f09177bda6b3654c56a750f84173123a.tar.gz OneRoll-9b2839b6f09177bda6b3654c56a750f84173123a.zip | |
-management of arithmetic operator for scalar result of dice.
Diffstat (limited to 'parsingtoolbox.h')
| -rw-r--r-- | parsingtoolbox.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/parsingtoolbox.h b/parsingtoolbox.h index 6bfffd0..5a87573 100644 --- a/parsingtoolbox.h +++ b/parsingtoolbox.h @@ -166,7 +166,7 @@ public: bool readDiceLogicOperator(QString &str, OperationCondition::ConditionOperator &op); - bool readArithmeticOperator(QString& str, ScalarOperatorNode::ArithmeticOperator& op); + bool readArithmeticOperator(QString& str, Die::ArithmeticOperator& op); static void readPainterParameter(PainterNode *painter, QString &str); @@ -185,7 +185,7 @@ private: QMap<QString,BooleanCondition::LogicOperator>* m_logicOp; QMap<QString,CompositeValidator::LogicOperation>* m_logicOperation; QMap<QString,OperationCondition::ConditionOperator>* m_conditionOperation; - QHash<QString,ScalarOperatorNode::ArithmeticOperator>* m_arithmeticOperation; + QHash<QString,Die::ArithmeticOperator>* m_arithmeticOperation; static QHash<QString,QString>* m_variableHash; |