summaryrefslogtreecommitdiffstats
path: root/src/libs/installer/macreplaceinstallnamesoperation.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/installer/macreplaceinstallnamesoperation.cpp')
-rw-r--r--src/libs/installer/macreplaceinstallnamesoperation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/installer/macreplaceinstallnamesoperation.cpp b/src/libs/installer/macreplaceinstallnamesoperation.cpp
index fa5e6139a..9ec553358 100644
--- a/src/libs/installer/macreplaceinstallnamesoperation.cpp
+++ b/src/libs/installer/macreplaceinstallnamesoperation.cpp
@@ -148,7 +148,7 @@ int MacReplaceInstallNamesOperation::updateExecutableInfo(MacBinaryInfo *binaryI
QProcessWrapper otool;
otool.start(QLatin1String("otool"), QStringList() << QLatin1String("-l") << binaryInfo->fileName);
if (!otool.waitForStarted()) {
- setError(UserDefinedError, tr("Can't invoke otool. Is Xcode installed?"));
+ setError(UserDefinedError, tr("Cannot invoke otool. Is Xcode installed?"));
return -1;
}
otool.waitForFinished();
@@ -230,7 +230,7 @@ bool MacReplaceInstallNamesOperation::execCommand(const QString &cmd, const QStr
QProcessWrapper process;
process.start(cmd, args);
if (!process.waitForStarted()) {
- setError(UserDefinedError, tr("Can't start process %0.").arg(cmd));
+ setError(UserDefinedError, tr("Cannot start process %0.").arg(cmd));
return false;
}
process.waitForFinished();