summaryrefslogtreecommitdiffstats
path: root/libksirtet/lib/types.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:47:36 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-12-15 15:47:36 -0600
commit97d1732e257f8700488d7ca1660ae7eba8fc6065 (patch)
tree4c6397ed2c1dd6f7c3354b5b87f313547d92a35f /libksirtet/lib/types.cpp
parent9c27a1a03e02fd53aedc1a182444b35fd8e14967 (diff)
downloadtdegames-97d1732e257f8700488d7ca1660ae7eba8fc6065.tar.gz
tdegames-97d1732e257f8700488d7ca1660ae7eba8fc6065.zip
Rename a number of old tq methods that are no longer tq specific
Diffstat (limited to 'libksirtet/lib/types.cpp')
-rw-r--r--libksirtet/lib/types.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/libksirtet/lib/types.cpp b/libksirtet/lib/types.cpp
index 86f7bfba..9d2149d8 100644
--- a/libksirtet/lib/types.cpp
+++ b/libksirtet/lib/types.cpp
@@ -23,13 +23,13 @@ TQString cId::errorMessage(const cId &id) const
case Accepted: return TQString();
case LibIdClash:
return i18n("The MultiPlayer library of the server is incompatible")
- + str.tqarg(libId).tqarg(id.libId);
+ + str.arg(libId).arg(id.libId);
case GameNameClash:
return i18n("Trying to connect a server for another game type")
- + str.tqarg(gameName).tqarg(id.gameName);
+ + str.arg(gameName).arg(id.gameName);
case GameIdClash:
return i18n("The server game version is incompatible")
- + str.tqarg(gameId).tqarg(id.gameId);
+ + str.arg(gameId).arg(id.gameId);
}
Q_ASSERT(0);
return TQString();