diff options
| author | 2017-11-23 17:23:33 +0100 | |
|---|---|---|
| committer | 2017-11-23 17:23:33 +0100 | |
| commit | 59c256f110dcd5301edc48e3d81576af65df2c2c (patch) | |
| tree | 7271ab6615453c480d52f5c4cae5ffb851fb4fbf | |
| parent | bbc6f032bf8f182e6e4e97c7afddf47a3fb8a911 (diff) | |
| download | OneRoll-59c256f110dcd5301edc48e3d81576af65df2c2c.tar.gz OneRoll-59c256f110dcd5301edc48e3d81576af65df2c2c.zip | |
fix indentation
| -rw-r--r-- | node/dicerollernode.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/node/dicerollernode.cpp b/node/dicerollernode.cpp index 25b9d5a..f2b002d 100644 --- a/node/dicerollernode.cpp +++ b/node/dicerollernode.cpp @@ -16,7 +16,7 @@ DiceRollerNode::DiceRollerNode(qint64 max,qint64 min) } void DiceRollerNode::run(ExecutionNode* previous) { - m_previousNode = previous; + m_previousNode = previous; if(nullptr!=previous) { Result* result=previous->getResult(); @@ -45,7 +45,7 @@ void DiceRollerNode::run(ExecutionNode* previous) m_nextNode->run(this); } } - } + } } quint64 DiceRollerNode::getFaces() const @@ -56,11 +56,11 @@ QString DiceRollerNode::toString(bool wl) const { if(wl) { - return QString("%1 [label=\"DiceRollerNode faces: %2\"]").arg(m_id).arg(getFaces()); + return QString("%1 [label=\"DiceRollerNode faces: %2\"]").arg(m_id).arg(getFaces()); } else { - return m_id; + return m_id; } } qint64 DiceRollerNode::getPriority() const |