summaryrefslogtreecommitdiffstats
path: root/kgeography/src/capitaldivisionasker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kgeography/src/capitaldivisionasker.cpp')
-rw-r--r--kgeography/src/capitaldivisionasker.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/kgeography/src/capitaldivisionasker.cpp b/kgeography/src/capitaldivisionasker.cpp
index 623cffa4..ffea1407 100644
--- a/kgeography/src/capitaldivisionasker.cpp
+++ b/kgeography/src/capitaldivisionasker.cpp
@@ -10,17 +10,17 @@
#include <klocale.h>
-#include <qradiobutton.h>
+#include <tqradiobutton.h>
#include "capitaldivisionasker.h"
#include "map.h"
-capitalDivisionAsker::capitalDivisionAsker(QWidget *parent, KGmap *m, QWidget *w, uint count) : boxAsker(parent, m, w, count)
+capitalDivisionAsker::capitalDivisionAsker(TQWidget *parent, KGmap *m, TQWidget *w, uint count) : boxAsker(parent, m, w, count)
{
init();
}
-bool capitalDivisionAsker::nextBoxAskerQuestionHook(const QString &division, int i, bool isAnswer)
+bool capitalDivisionAsker::nextBoxAskerQuestionHook(const TQString &division, int i, bool isAnswer)
{
bool b;
if (isAnswer)
@@ -29,16 +29,16 @@ bool capitalDivisionAsker::nextBoxAskerQuestionHook(const QString &division, int
p_currentAnswer.setQuestion(i18n(p_map -> getFileName().utf8(), p_capital.utf8()));
p_currentAnswer.setCorrectAnswer(i18n(p_map -> getFileName().utf8(), division.utf8()));
- QString sw = i18n("There are two ways of dealing with the translation of \"%1 is the capital of...\". The first option simply replaces %1 with the translated name of the relevant city. If the grammar of your language allows this, choose this option by setting the translation of this message to 1, and leave untranslated the translations of \"%1 is the capital of...\" that have the placename embedded (or translate them as - if you wish to show the file as fully translated. The second option is to translate all messages in full - this is likely to be required in the case of highly-inflected languages like Russian. To choose this option, set the translation of this message to 0, and translate all the messages.", "0");
+ TQString sw = i18n("There are two ways of dealing with the translation of \"%1 is the capital of...\". The first option simply replaces %1 with the translated name of the relevant city. If the grammar of your language allows this, choose this option by setting the translation of this message to 1, and leave untranslated the translations of \"%1 is the capital of...\" that have the placename embedded (or translate them as - if you wish to show the file as fully translated. The second option is to translate all messages in full - this is likely to be required in the case of highly-inflected languages like Russian. To choose this option, set the translation of this message to 0, and translate all the messages.", "0");
if (sw == "1")
{
- QString capitalName = i18n(p_map -> getFileName().utf8(), p_capital.utf8());
- QString text = i18n("%1 is the capital of...");
+ TQString capitalName = i18n(p_map -> getFileName().utf8(), p_capital.utf8());
+ TQString text = i18n("%1 is the capital of...");
setQuestion(text.arg(capitalName));
}
else
{
- QString s = QString("%1 is the capital of...").arg(p_capital);
+ TQString s = TQString("%1 is the capital of...").arg(p_capital);
setQuestion(i18n(p_map -> getFileName().utf8(), s.utf8()));
}
p_rb[i] -> setText(i18n(p_map -> getFileName().utf8(), division.utf8()));
@@ -68,7 +68,7 @@ void capitalDivisionAsker::setAnswerHook(int userSays)
p_currentAnswer.setAnswer(p_rb[userSays] -> text());
}
-QString capitalDivisionAsker::getQuestionHook() const
+TQString capitalDivisionAsker::getQuestionHook() const
{
return i18n("Division From Its Capital");
}