summaryrefslogtreecommitdiffstats
path: root/kgeography/src/boxasker.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:39:55 +0000
commit0a6e0958c03e41c87b15557b6f407874f20c2f8d (patch)
tree2cdd58c4013b1be09cfcbb4ddae2b05712b9aeee /kgeography/src/boxasker.cpp
parent83f9dfafc157ff7823804b3ff457b43d021a5b4b (diff)
downloadtdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.tar.gz
tdeedu-0a6e0958c03e41c87b15557b6f407874f20c2f8d.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdeedu@1157642 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kgeography/src/boxasker.cpp')
-rw-r--r--kgeography/src/boxasker.cpp34
1 files changed, 17 insertions, 17 deletions
diff --git a/kgeography/src/boxasker.cpp b/kgeography/src/boxasker.cpp
index 0634c622..dc6d526d 100644
--- a/kgeography/src/boxasker.cpp
+++ b/kgeography/src/boxasker.cpp
@@ -15,25 +15,25 @@
#include <klocale.h>
#include <kpushbutton.h>
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qradiobutton.h>
-#include <qvbuttongroup.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqradiobutton.h>
+#include <tqvbuttongroup.h>
#include "boxasker.h"
#include "map.h"
-boxAsker::boxAsker(QWidget *parent, KGmap *m, QWidget *w, uint count) : askWidget(parent, m, w, count)
+boxAsker::boxAsker(TQWidget *parent, KGmap *m, TQWidget *w, uint count) : askWidget(parent, m, w, count)
{
- p_lay = new QVBoxLayout(this);
+ p_lay = new TQVBoxLayout(this);
- QVButtonGroup *bg = new QVButtonGroup(this);
- p_label = new QLabel(this);
- p_rb = new QRadioButton*[4];
+ TQVButtonGroup *bg = new TQVButtonGroup(this);
+ p_label = new TQLabel(this);
+ p_rb = new TQRadioButton*[4];
for(int i = 0; i < 4; i++)
{
- p_rb[i] = new QRadioButton(bg);
- p_rb[i]->setFocusPolicy(QWidget::StrongFocus);
+ p_rb[i] = new TQRadioButton(bg);
+ p_rb[i]->setFocusPolicy(TQWidget::StrongFocus);
}
p_accept = new KPushButton(this);
@@ -48,21 +48,21 @@ boxAsker::~boxAsker()
delete[] p_rb;
}
-void boxAsker::setQuestion(const QString &q)
+void boxAsker::setQuestion(const TQString &q)
{
p_label -> setText(q);
}
-void boxAsker::keyReleaseEvent(QKeyEvent *e)
+void boxAsker::keyReleaseEvent(TQKeyEvent *e)
{
if (e -> key() == Qt::Key_Return || e -> key() == Qt::Key_Enter) checkAnswer();
else askWidget::keyReleaseEvent(e);
}
-void boxAsker::nextQuestionHook(const QString &division)
+void boxAsker::nextQuestionHook(const TQString &division)
{
- QString otherDivision;
- QStringList auxList;
+ TQString otherDivision;
+ TQStringList auxList;
int i;
setFocus();
@@ -122,7 +122,7 @@ void boxAsker::init()
nextQuestion();
p_accept -> disconnect();
- connect(p_accept, SIGNAL(clicked()), this, SLOT(checkAnswer()));
+ connect(p_accept, TQT_SIGNAL(clicked()), this, TQT_SLOT(checkAnswer()));
}
#include "boxasker.moc"