summaryrefslogtreecommitdiffstats
path: root/kbattleship/kbattleship/kstatdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kbattleship/kbattleship/kstatdialog.cpp')
-rw-r--r--kbattleship/kbattleship/kstatdialog.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/kbattleship/kbattleship/kstatdialog.cpp b/kbattleship/kbattleship/kstatdialog.cpp
index 9db2afe4..03bc7d41 100644
--- a/kbattleship/kbattleship/kstatdialog.cpp
+++ b/kbattleship/kbattleship/kstatdialog.cpp
@@ -15,22 +15,22 @@
* *
***************************************************************************/
-#include <qlcdnumber.h>
-#include <qlabel.h>
+#include <tqlcdnumber.h>
+#include <tqlabel.h>
#include "kstatdialog.moc"
-KStatDialog::KStatDialog(QWidget *parent, const char *name) : statDlg(parent, name)
+KStatDialog::KStatDialog(TQWidget *parent, const char *name) : statDlg(parent, name)
{
}
void KStatDialog::slotAddOwnWon()
{
- OwnLabel->setText(QString::number(OwnLabel->text().toInt() + 1));
+ OwnLabel->setText(TQString::number(OwnLabel->text().toInt() + 1));
}
void KStatDialog::slotAddEnemyWon()
{
- EnemyLabel->setText(QString::number(EnemyLabel->text().toInt() + 1));
+ EnemyLabel->setText(TQString::number(EnemyLabel->text().toInt() + 1));
}
void KStatDialog::setShot()
@@ -72,8 +72,8 @@ void KStatDialog::clear()
void KStatDialog::clearWon()
{
- OwnLabel->setText(QString::number(0));
- EnemyLabel->setText(QString::number(0));
+ OwnLabel->setText(TQString::number(0));
+ EnemyLabel->setText(TQString::number(0));
}
int KStatDialog::shot()