summaryrefslogtreecommitdiff
path: root/src/libs/clangsupport/processcreator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/clangsupport/processcreator.cpp')
-rw-r--r--src/libs/clangsupport/processcreator.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libs/clangsupport/processcreator.cpp b/src/libs/clangsupport/processcreator.cpp
index 9b21ba298e..dfc7f56d9f 100644
--- a/src/libs/clangsupport/processcreator.cpp
+++ b/src/libs/clangsupport/processcreator.cpp
@@ -85,7 +85,7 @@ void ProcessCreator::checkIfProcessPathExists() const
{
if (!QFileInfo::exists(m_processPath)) {
const QString messageTemplate = QCoreApplication::translate("ProcessCreator",
- "Executable does not exists: %1");
+ "Executable does not exist: %1");
throwProcessException(messageTemplate.arg(m_processPath));
}
}
@@ -101,7 +101,7 @@ void ProcessCreator::dispatchProcessError(QProcess *process) const
switch (process->error()) {
case QProcess::UnknownError: {
const QString message = QCoreApplication::translate("ProcessCreator",
- "Unknown error happend.");
+ "Unknown error occurred.");
throwProcessException(message);
};
case QProcess::Crashed: {
@@ -116,7 +116,7 @@ void ProcessCreator::dispatchProcessError(QProcess *process) const
};
case QProcess::Timedout: {
const QString message = QCoreApplication::translate("ProcessCreator",
- "Process timeouted.");
+ "Process timed out.");
throwProcessException(message);
};
case QProcess::WriteError: {