summaryrefslogtreecommitdiffstats
path: root/kbackgammon/engines/fibs/kbginvite.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbackgammon/engines/fibs/kbginvite.cpp')
-rw-r--r--kbackgammon/engines/fibs/kbginvite.cpp60
1 files changed, 30 insertions, 30 deletions
diff --git a/kbackgammon/engines/fibs/kbginvite.cpp b/kbackgammon/engines/fibs/kbginvite.cpp
index cb455f0a..f43c3b6a 100644
--- a/kbackgammon/engines/fibs/kbginvite.cpp
+++ b/kbackgammon/engines/fibs/kbginvite.cpp
@@ -24,11 +24,11 @@
#include "kbginvite.h"
#include "kbginvite.moc"
-#include <qlabel.h>
-#include <qlayout.h>
-#include <qframe.h>
-#include <qspinbox.h>
-#include <qstring.h>
+#include <tqlabel.h>
+#include <tqlayout.h>
+#include <tqframe.h>
+#include <tqspinbox.h>
+#include <tqstring.h>
#include <klocale.h>
#include <klineedit.h>
@@ -40,8 +40,8 @@ class KBgInvitePrivate {
public:
KLineEdit *mLe;
- QSpinBox *mSb;
- QPushButton *mInvite, *mResume, *mUnlimited, *mCancel, *mClose;
+ TQSpinBox *mSb;
+ TQPushButton *mInvite, *mResume, *mUnlimited, *mCancel, *mClose;
};
@@ -56,14 +56,14 @@ KBgInvite::KBgInvite(const char *name)
d = new KBgInvitePrivate();
- QLabel *info = new QLabel(this);
+ TQLabel *info = new TQLabel(this);
d->mLe = new KLineEdit(this, "invitation dialog");
- d->mSb = new QSpinBox(1, 999, 1, this, "spin box");
+ d->mSb = new TQSpinBox(1, 999, 1, this, "spin box");
- d->mInvite = new QPushButton(i18n("&Invite"), this);
- d->mResume = new QPushButton(i18n("&Resume"), this);
- d->mUnlimited = new QPushButton(i18n("&Unlimited"), this);
+ d->mInvite = new TQPushButton(i18n("&Invite"), this);
+ d->mResume = new TQPushButton(i18n("&Resume"), this);
+ d->mUnlimited = new TQPushButton(i18n("&Unlimited"), this);
d->mClose = new KPushButton(KStdGuiItem::close(), this);
d->mCancel = new KPushButton(KStdGuiItem::clear(), this);
@@ -71,19 +71,19 @@ KBgInvite::KBgInvite(const char *name)
info->setText(i18n("Type the name of the player you want to invite in the first entry\n"
"field and select the desired match length in the spin box."));
- QFrame *hLine = new QFrame(this);
- hLine->setFrameStyle(QFrame::Sunken|QFrame::HLine);
+ TQFrame *hLine = new TQFrame(this);
+ hLine->setFrameStyle(TQFrame::Sunken|TQFrame::HLine);
/*
* Set up layouts
*/
- QBoxLayout *vbox = new QVBoxLayout(this);
+ TQBoxLayout *vbox = new TQVBoxLayout(this);
- QBoxLayout *hbox_1 = new QHBoxLayout(vbox);
- QBoxLayout *hbox_2 = new QHBoxLayout(vbox);
- QBoxLayout *hbox_3 = new QHBoxLayout(vbox);
- QBoxLayout *hbox_4 = new QHBoxLayout(vbox);
- QBoxLayout *hbox_5 = new QHBoxLayout(vbox);
+ TQBoxLayout *hbox_1 = new TQHBoxLayout(vbox);
+ TQBoxLayout *hbox_2 = new TQHBoxLayout(vbox);
+ TQBoxLayout *hbox_3 = new TQHBoxLayout(vbox);
+ TQBoxLayout *hbox_4 = new TQHBoxLayout(vbox);
+ TQBoxLayout *hbox_5 = new TQHBoxLayout(vbox);
hbox_1->addWidget(info);
@@ -117,11 +117,11 @@ KBgInvite::KBgInvite(const char *name)
/*
* Connect the buttons
*/
- connect(d->mUnlimited, SIGNAL(clicked()), SLOT(unlimitedClicked()));
- connect(d->mResume, SIGNAL(clicked()), SLOT(resumeClicked()));
- connect(d->mInvite, SIGNAL(clicked()), SLOT(inviteClicked()));
- connect(d->mClose, SIGNAL(clicked()), SLOT(hide()));
- connect(d->mCancel, SIGNAL(clicked()), SLOT(cancelClicked()));
+ connect(d->mUnlimited, TQT_SIGNAL(clicked()), TQT_SLOT(unlimitedClicked()));
+ connect(d->mResume, TQT_SIGNAL(clicked()), TQT_SLOT(resumeClicked()));
+ connect(d->mInvite, TQT_SIGNAL(clicked()), TQT_SLOT(inviteClicked()));
+ connect(d->mClose, TQT_SIGNAL(clicked()), TQT_SLOT(hide()));
+ connect(d->mCancel, TQT_SIGNAL(clicked()), TQT_SLOT(cancelClicked()));
}
/*
@@ -143,7 +143,7 @@ void KBgInvite::hide()
/*
* Set player name
*/
-void KBgInvite::setPlayer(const QString &player)
+void KBgInvite::setPlayer(const TQString &player)
{
d->mLe->setText(player);
}
@@ -153,8 +153,8 @@ void KBgInvite::setPlayer(const QString &player)
*/
void KBgInvite::inviteClicked()
{
- QString tmp;
- emit inviteCommand(QString("invite ") + d->mLe->text() + " " + tmp.setNum(d->mSb->value()));
+ TQString tmp;
+ emit inviteCommand(TQString("invite ") + d->mLe->text() + " " + tmp.setNum(d->mSb->value()));
}
/*
@@ -162,7 +162,7 @@ void KBgInvite::inviteClicked()
*/
void KBgInvite::unlimitedClicked()
{
- emit inviteCommand(QString("invite ") + d->mLe->text() + " unlimited");
+ emit inviteCommand(TQString("invite ") + d->mLe->text() + " unlimited");
}
/*
@@ -170,7 +170,7 @@ void KBgInvite::unlimitedClicked()
*/
void KBgInvite::resumeClicked()
{
- emit inviteCommand(QString("invite ") + d->mLe->text());
+ emit inviteCommand(TQString("invite ") + d->mLe->text());
}
/*