summaryrefslogtreecommitdiff
path: root/noncore/games/kpacman/painter.cpp
Side-by-side diff
Diffstat (limited to 'noncore/games/kpacman/painter.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/games/kpacman/painter.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/noncore/games/kpacman/painter.cpp b/noncore/games/kpacman/painter.cpp
index 16fed55..80aeab0 100644
--- a/noncore/games/kpacman/painter.cpp
+++ b/noncore/games/kpacman/painter.cpp
@@ -74,11 +74,11 @@ QList<QPixmap> *Painter::loadPixmap(QWidget*, QString pixmapName,
QPixmap PIXMAP(pixmapName);
if (PIXMAP.isNull() || PIXMAP.mask() == NULL) {
- QString msg = i18n("The pixmap could not be contructed.\n\n"
+ QString msg = "The pixmap could not be contructed.\n\n"
"The file '@PIXMAPNAME@' does not exist,\n"
- "or is of an unknown format.");
+ "or is of an unknown format.";
msg.replace(QRegExp("@PIXMAPNAME@"), pixmapName);
- // QMessageBox::critical(parent, i18n("Initialization Error"), msg);
+ // QMessageBox::critical(parent, tr("Initialization Error"), msg);
printf("%s\n", msg.data());
return 0;
}