summaryrefslogtreecommitdiffstats
path: root/kfouleggs/field.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-07-31 19:42:31 +0000
commit576eb4299a00bc053db35414406f46372a0f70f2 (patch)
tree4c030922d533821db464af566188e7d40cc8848c /kfouleggs/field.cpp
parent0718336b6017d1a4fc1d626544180a5a2a29ddec (diff)
downloadtdegames-576eb4299a00bc053db35414406f46372a0f70f2.tar.gz
tdegames-576eb4299a00bc053db35414406f46372a0f70f2.zip
Trinity Qt initial conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegames@1157643 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'kfouleggs/field.cpp')
-rw-r--r--kfouleggs/field.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kfouleggs/field.cpp b/kfouleggs/field.cpp
index 9d7abe85..ae9bcdce 100644
--- a/kfouleggs/field.cpp
+++ b/kfouleggs/field.cpp
@@ -1,7 +1,7 @@
#include "field.h"
#include "field.moc"
-#include <qwhatsthis.h>
+#include <tqwhatsthis.h>
#include <klocale.h>
#include <kgamelcd.h>
@@ -10,11 +10,11 @@
#include "board.h"
-FEField::FEField(QWidget *parent)
+FEField::FEField(TQWidget *parent)
: Field(parent)
{
Board *b = static_cast<Board *>(board);
- QWhatsThis::add(b->giftPool(), i18n("Display the amount of foul eggs sent by your opponent."));
+ TQWhatsThis::add(b->giftPool(), i18n("Display the amount of foul eggs sent by your opponent."));
}
void FEField::removedUpdated()
@@ -45,17 +45,17 @@ void FEField::settingsChanged()
lcd->show();
if ( CommonPrefs::showDetailedRemoved() ) {
- QWhatsThis::add(removedList,
+ TQWhatsThis::add(removedList,
i18n("Display the number of removed groups (\"puyos\") classified by the number of chained removal."));
for (uint i=0; i<4; i++) {
KGameLCD *lcd = new KGameLCD(6, removedList);
- QString s = (i==3 ? ">3" : QString::number(i));
+ TQString s = (i==3 ? ">3" : TQString::number(i));
removedList->append(s, lcd);
uint nb = static_cast<const FEBoard *>(board)->nbChainedPuyos(i);
lcd->displayInt(nb);
lcd->show();
}
} else
- QWhatsThis::add(removedList,
+ TQWhatsThis::add(removedList,
i18n("Display the number of removed groups (\"puyos\")."));
}