summaryrefslogtreecommitdiffstats
path: root/ksame
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:55:35 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-19 11:55:35 -0600
commitc0f375feba0103bed2bac1b1f05e76e9ae28fa89 (patch)
tree9c30a9097d650343df41d867f0e008769529eb08 /ksame
parent0e2b76239f354a9eead0b4e37d86d390ec57ffa9 (diff)
downloadtdegames-c0f375feba0103bed2bac1b1f05e76e9ae28fa89.tar.gz
tdegames-c0f375feba0103bed2bac1b1f05e76e9ae28fa89.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'ksame')
-rw-r--r--ksame/KSameWidget.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/ksame/KSameWidget.cpp b/ksame/KSameWidget.cpp
index 4cbcad57..a49db4f7 100644
--- a/ksame/KSameWidget.cpp
+++ b/ksame/KSameWidget.cpp
@@ -121,11 +121,11 @@ void KSameWidget::showNumberRemainingToggled()
if(showNumberRemaining->isChecked()){
TQStringList list;
for(int i=1;i<=stone->colors();i++)
- list.append(TQString("%1").tqarg(stone->count(i)));
- TQString count = TQString(" (%1)").tqarg(list.join(","));
- status->changeItem(i18n("%1 Colors%2").tqarg(stone->colors()).tqarg(count),1);
+ list.append(TQString("%1").arg(stone->count(i)));
+ TQString count = TQString(" (%1)").arg(list.join(","));
+ status->changeItem(i18n("%1 Colors%2").arg(stone->colors()).arg(count),1);
}
- else status->changeItem(i18n("%1 Colors").tqarg(stone->colors()),1);
+ else status->changeItem(i18n("%1 Colors").arg(stone->colors()),1);
KConfig *cfg = kapp->config();
cfg->writeEntry("showRemaining", showNumberRemaining->isChecked());
@@ -188,15 +188,15 @@ void KSameWidget::m_showhs() {
}
void KSameWidget::setColors(int colors) {
- status->changeItem(i18n("%1 Colors").tqarg(colors),1);
+ status->changeItem(i18n("%1 Colors").arg(colors),1);
}
void KSameWidget::setBoard(int board) {
- status->changeItem(i18n("Board: %1").tqarg(board, 6), 2);
+ status->changeItem(i18n("Board: %1").arg(board, 6), 2);
}
void KSameWidget::setMarked(int m) {
- status->changeItem(i18n("Marked: %1").tqarg(m, 6),3);
+ status->changeItem(i18n("Marked: %1").arg(m, 6),3);
m_markedStones=m;
}
@@ -209,11 +209,11 @@ void KSameWidget::setScore(int score) {
if(showNumberRemaining->isChecked()){
TQStringList list;
for(int i=1;i<=stone->colors();i++)
- list.append(TQString("%1").tqarg(stone->count(i)));
- TQString count = TQString(" (%1)").tqarg(list.join(","));
- status->changeItem(i18n("%1 Colors%2").tqarg(stone->colors()).tqarg(count),1);
+ list.append(TQString("%1").arg(stone->count(i)));
+ TQString count = TQString(" (%1)").arg(list.join(","));
+ status->changeItem(i18n("%1 Colors%2").arg(stone->colors()).arg(count),1);
}
- status->changeItem(i18n("Score: %1").tqarg(score, 6),4);
+ status->changeItem(i18n("Score: %1").arg(score, 6),4);
undo->setEnabled(stone->undoPossible());
restart->setEnabled(!stone->isOriginalBoard());
}
@@ -222,11 +222,11 @@ void KSameWidget::gameover() {
if (stone->hasBonus()) {
KNotifyClient::event(winId(), "game won",
i18n("You even removed the last stone, great job! "
- "This gave you a score of %1 in total.").tqarg(stone->score()));
+ "This gave you a score of %1 in total.").arg(stone->score()));
} else {
KNotifyClient::event(winId(), "game over",
i18n("There are no more removeable stones. "
- "You got a score of %1 in total.").tqarg(stone->score()));
+ "You got a score of %1 in total.").arg(stone->score()));
}
stone->unmark();
KScoreDialog d(KScoreDialog::Name | KScoreDialog::Score, this);