summaryrefslogtreecommitdiffstats
path: root/src/libs/installer
diff options
context:
space:
mode:
authorNiels Weber <niels.weber@digia.com>2014-12-12 12:59:26 +0100
committerNiels Weber <niels.weber@theqtcompany.com>2014-12-12 13:09:03 +0100
commitfb29c6c6ca89129109131d6c1a889cebcf48fc11 (patch)
tree6ac45ebaae2c4d8d9fd97a362c1ec883ff4781c8 /src/libs/installer
parentb14a7d2cbc2424c7bdc419ff7b97eae4b12d4d75 (diff)
tr() -> translate()
Change-Id: I805926a241d31f3ae6846a7429b99af4f68169fe Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com>
Diffstat (limited to 'src/libs/installer')
-rw-r--r--src/libs/installer/utils.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/utils.cpp b/src/libs/installer/utils.cpp
index b8aa46324..2b1eab55c 100644
--- a/src/libs/installer/utils.cpp
+++ b/src/libs/installer/utils.cpp
@@ -390,7 +390,7 @@ QString QInstaller::windowsErrorString(int errorCode)
LocalFree((HLOCAL) string);
if (ret.isEmpty() && errorCode == ERROR_MOD_NOT_FOUND)
- ret = QCoreApplication::tr("QInstaller", "The specified module could not be found.");
+ ret = QCoreApplication::translate("QInstaller", "The specified module could not be found.");
ret.append(QLatin1String(" (0x"));
ret.append(QString::number(uint(errorCode), 16).rightJustified(8, QLatin1Char('0')));