summaryrefslogtreecommitdiffstats
path: root/kwordquiz/src/wqscore.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kwordquiz/src/wqscore.cpp')
-rw-r--r--kwordquiz/src/wqscore.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kwordquiz/src/wqscore.cpp b/kwordquiz/src/wqscore.cpp
index 420a002d..80cb3960 100644
--- a/kwordquiz/src/wqscore.cpp
+++ b/kwordquiz/src/wqscore.cpp
@@ -58,9 +58,9 @@ void WQScore::countIncrement(CountDirection d)
/*!
\fn WQScore::answerText()
*/
-QString WQScore::answerText()
+TQString WQScore::answerText()
{
- QString s;
+ TQString s;
if (m_percent)
{
float f = ((m_answerCount * 100.0) / m_questionCount);
@@ -82,9 +82,9 @@ QString WQScore::answerText()
/*!
\fn WQScore::correctText()
*/
-QString WQScore::correctText()
+TQString WQScore::correctText()
{
- QString s;
+ TQString s;
if (m_percent)
{
if (m_correct > 0)
@@ -104,9 +104,9 @@ QString WQScore::correctText()
/*!
\fn WQScore::errorText()
*/
-QString WQScore::errorText()
+TQString WQScore::errorText()
{
- QString s;
+ TQString s;
if (m_percent)
{
if (m_error > 0)
@@ -126,9 +126,9 @@ QString WQScore::errorText()
/*!
\fn WQScore::valueToString(int i)
*/
-QString WQScore::valueToString(int i)
+TQString WQScore::valueToString(int i)
{
- QString s = ""; //return empty string for 0
+ TQString s = ""; //return empty string for 0
if (i > 0)
s = s.setNum(i, 10);