diff options
| author | 2015-08-20 12:29:05 +0200 | |
|---|---|---|
| committer | 2015-08-20 12:29:05 +0200 | |
| commit | b7a58837e1ad1412a5fece212d4619bedc4a5d4c (patch) | |
| tree | b10572ce60294aa8b4d94c763ba91915cc0069f3 | |
| parent | 831f75a83ca3e5734d3c110af584a0f3bf7430e7 (diff) | |
| download | OneRoll-b7a58837e1ad1412a5fece212d4619bedc4a5d4c.tar.gz OneRoll-b7a58837e1ad1412a5fece212d4619bedc4a5d4c.zip | |
fix compilation
| -rw-r--r-- | node/helpnode.cpp | 3 | ||||
| -rw-r--r-- | result/stringresult.h | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/node/helpnode.cpp b/node/helpnode.cpp index d5fc2c9..376f48a 100644 --- a/node/helpnode.cpp +++ b/node/helpnode.cpp @@ -14,8 +14,7 @@ void HelpNode::run(ExecutionNode* previous) { if(previous->getResult() == NULL) { - txtResult->setText(toString()); - + txtResult->setText(tr("Rolisteam Dice Parser:\nFull documentation at: %1").arg(m_path)); } else { diff --git a/result/stringresult.h b/result/stringresult.h index 5a6b26c..37739a2 100644 --- a/result/stringresult.h +++ b/result/stringresult.h @@ -36,7 +36,7 @@ public: * @brief toString * @return */ - virtual QString toString(); + virtual QString toString(bool ); private: QString m_value; }; |