summaryrefslogtreecommitdiffstats
path: root/kgeography/src/answer.h
diff options
context:
space:
mode:
Diffstat (limited to 'kgeography/src/answer.h')
-rw-r--r--kgeography/src/answer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/kgeography/src/answer.h b/kgeography/src/answer.h
index 02190ab4..b5169a0b 100644
--- a/kgeography/src/answer.h
+++ b/kgeography/src/answer.h
@@ -11,7 +11,7 @@
#ifndef RESULT_H
#define RESULT_H
-#include <qvariant.h>
+#include <tqvariant.h>
class QGridLayout;
@@ -23,15 +23,15 @@ class userAnswer
userAnswer &operator=(const userAnswer &qa);
- void setQuestion(QVariant question);
- void setAnswer(QVariant answer);
+ void setQuestion(TQVariant question);
+ void setAnswer(TQVariant answer);
void setAnswerCorrect(bool correct);
- void setCorrectAnswer(QVariant correctAnswer);
+ void setCorrectAnswer(TQVariant correctAnswer);
- void putWidgets(QWidget *w, QGridLayout *lay, int row) const;
+ void putWidgets(TQWidget *w, TQGridLayout *lay, int row) const;
private:
- QVariant p_question, p_answer, p_correctAnswer;
+ TQVariant p_question, p_answer, p_correctAnswer;
bool p_correct;
};