diff options
| author | 2025-10-07 00:10:02 +0200 | |
|---|---|---|
| committer | 2025-11-10 02:39:57 +0000 | |
| commit | 19670fc751782d063fafd43c9be03ecc92572c6b (patch) | |
| tree | 0c7a3a803324e7cc9f70a6f2f5ed41907b4468e8 /src/libparser/node/keepdiceexecnode.h | |
| parent | 46cb61e9f90a480b0277816ae8d42e5b0c91fe0c (diff) | |
| download | OneRoll-19670fc751782d063fafd43c9be03ecc92572c6b.tar.gz OneRoll-19670fc751782d063fafd43c9be03ecc92572c6b.zip | |
Fix error and cpp style.
Diffstat (limited to 'src/libparser/node/keepdiceexecnode.h')
| -rw-r--r-- | src/libparser/node/keepdiceexecnode.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libparser/node/keepdiceexecnode.h b/src/libparser/node/keepdiceexecnode.h index 0dd6616..e6bd998 100644 --- a/src/libparser/node/keepdiceexecnode.h +++ b/src/libparser/node/keepdiceexecnode.h @@ -34,13 +34,13 @@ public: virtual ~KeepDiceExecNode(); virtual void run(ExecutionNode* previous); - virtual void setDiceKeepNumber(ExecutionNode* valueNode ); + virtual void setDiceKeepNumber(ExecutionNode* valueNode); virtual QString toString(bool) const; virtual qint64 getPriority() const; virtual ExecutionNode* getCopy() const; private: - ExecutionNode* m_numberOfDiceNode = nullptr; + ExecutionNode* m_numberOfDiceNode= nullptr; DiceResult* m_diceResult; }; |