diff options
| author | 2016-03-22 19:27:45 +0100 | |
|---|---|---|
| committer | 2016-03-22 19:27:45 +0100 | |
| commit | d466a529fe2ed5c09c2353c67c82df5c83d831cf (patch) | |
| tree | 6807e3729cf4eff1c750e5de04113af4809059bb /result | |
| parent | 37320ce7aa23c52f950a97c756a2d9c618467d1d (diff) | |
| download | OneRoll-d466a529fe2ed5c09c2353c67c82df5c83d831cf.tar.gz OneRoll-d466a529fe2ed5c09c2353c67c82df5c83d831cf.zip | |
fix cpp check
Diffstat (limited to 'result')
| -rw-r--r-- | result/result.cpp | 2 | ||||
| -rw-r--r-- | result/result.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/result/result.cpp b/result/result.cpp index 163d539..10056aa 100644 --- a/result/result.cpp +++ b/result/result.cpp @@ -23,7 +23,7 @@ #include <QUuid> Result::Result() - : m_previous(NULL),m_id(QString("\"%1\"").arg(QUuid::createUuid().toString())) + : m_previous(NULL),m_resultTypes(NONE),m_id(QString("\"%1\"").arg(QUuid::createUuid().toString())) { } diff --git a/result/result.h b/result/result.h index 2a5b7f9..efadbb2 100644 --- a/result/result.h +++ b/result/result.h @@ -34,7 +34,7 @@ public: /** * @brief The RESULT_TYPE enum or combinaison */ - enum RESULT_TYPE {SCALAR=1,STRING=2,DICE_LIST=4}; + enum RESULT_TYPE {NONE=0,SCALAR=1,STRING=2,DICE_LIST=4}; /** * @brief Result */ |