diff options
Diffstat (limited to 'kwordquiz/src/wqscore.cpp')
-rw-r--r-- | kwordquiz/src/wqscore.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/kwordquiz/src/wqscore.cpp b/kwordquiz/src/wqscore.cpp index 80cb3960..485363b0 100644 --- a/kwordquiz/src/wqscore.cpp +++ b/kwordquiz/src/wqscore.cpp @@ -16,7 +16,7 @@ #include "wqscore.h" -WQScore::WQScore() +WTQScore::WTQScore() { m_questionCount = 0; m_percent = false; @@ -26,16 +26,16 @@ WQScore::WQScore() } -WQScore::~WQScore() +WTQScore::~WTQScore() {} -void WQScore::setAsPercent(bool p) +void WTQScore::setAsPercent(bool p) { m_percent = p; } -void WQScore::setQuestionCount(int c) +void WTQScore::setQuestionCount(int c) { m_questionCount = c; //m_percent = false; @@ -44,7 +44,7 @@ void WQScore::setQuestionCount(int c) m_answerCount = 0; } -void WQScore::countIncrement(CountDirection d) +void WTQScore::countIncrement(CountDirection d) { if (d != cdNone) @@ -56,9 +56,9 @@ void WQScore::countIncrement(CountDirection d) } /*! - \fn WQScore::answerText() + \fn WTQScore::answerText() */ -TQString WQScore::answerText() +TQString WTQScore::answerText() { TQString s; if (m_percent) @@ -80,9 +80,9 @@ TQString WQScore::answerText() } /*! - \fn WQScore::correctText() + \fn WTQScore::correctText() */ -TQString WQScore::correctText() +TQString WTQScore::correctText() { TQString s; if (m_percent) @@ -102,9 +102,9 @@ TQString WQScore::correctText() } /*! - \fn WQScore::errorText() + \fn WTQScore::errorText() */ -TQString WQScore::errorText() +TQString WTQScore::errorText() { TQString s; if (m_percent) @@ -124,9 +124,9 @@ TQString WQScore::errorText() } /*! - \fn WQScore::valueToString(int i) + \fn WTQScore::valueToString(int i) */ -TQString WQScore::valueToString(int i) +TQString WTQScore::valueToString(int i) { TQString s = ""; //return empty string for 0 |