summaryrefslogtreecommitdiffstats
path: root/ksmiletris/gamewindow.cpp
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 /ksmiletris/gamewindow.cpp
parent0e2b76239f354a9eead0b4e37d86d390ec57ffa9 (diff)
downloadtdegames-c0f375feba0103bed2bac1b1f05e76e9ae28fa89.tar.gz
tdegames-c0f375feba0103bed2bac1b1f05e76e9ae28fa89.zip
Remove additional unneeded tq method conversions
Diffstat (limited to 'ksmiletris/gamewindow.cpp')
-rw-r--r--ksmiletris/gamewindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ksmiletris/gamewindow.cpp b/ksmiletris/gamewindow.cpp
index 2d5824c8..004c60e2 100644
--- a/ksmiletris/gamewindow.cpp
+++ b/ksmiletris/gamewindow.cpp
@@ -182,8 +182,8 @@ void GameWindow::updateStats(int level, int points)
TQString l, p;
l.setNum(level);
p.setNum(points);
- status->changeItem(i18n("Level: %1").tqarg(l), 1);
- status->changeItem(i18n("Score: %1").tqarg(p), 2);
+ status->changeItem(i18n("Level: %1").arg(l), 1);
+ status->changeItem(i18n("Score: %1").arg(p), 2);
}
void GameWindow::gameOver()