diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2014-04-17 14:09:47 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2014-04-22 10:06:40 +0200 |
commit | eccc1198d6d49707987ab3846da084e38edaf7c4 (patch) | |
tree | c4056ac7e0dfd26bc5aff3ceaed6e9fb1ec5b559 /src/libs/utils/consoleprocess_unix.cpp | |
parent | c20f40e12e0b6c5c85d0edfa349ab25b5472f06c (diff) | |
download | qt-creator-eccc1198d6d49707987ab3846da084e38edaf7c4.tar.gz |
Use double quotes instead of single quotes as per our guidelines.
Change-Id: Ib608bb49e26781aef1914085a5d801fcdcd5eb56
Reviewed-by: Leena Miettinen <riitta-leena.miettinen@digia.com>
Diffstat (limited to 'src/libs/utils/consoleprocess_unix.cpp')
-rw-r--r-- | src/libs/utils/consoleprocess_unix.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/utils/consoleprocess_unix.cpp b/src/libs/utils/consoleprocess_unix.cpp index 7dc4bdf1e8..f52518d054 100644 --- a/src/libs/utils/consoleprocess_unix.cpp +++ b/src/libs/utils/consoleprocess_unix.cpp @@ -163,7 +163,7 @@ bool ConsoleProcess::start(const QString &program, const QString &args) d->m_process.start(xterm, allArgs); if (!d->m_process.waitForStarted()) { stubServerShutdown(); - emit processError(tr("Cannot start the terminal emulator '%1', change the setting in the " + emit processError(tr("Cannot start the terminal emulator \"%1\", change the setting in the " "Environment options.").arg(xterm)); delete d->m_tempFile; d->m_tempFile = 0; @@ -247,7 +247,7 @@ QString ConsoleProcess::stubServerListen() const QString stubServer = stubFifoDir + QLatin1String("/stub-socket"); if (!d->m_stubServer.listen(stubServer)) { ::rmdir(d->m_stubServerDir.constData()); - return tr("Cannot create socket '%1': %2").arg(stubServer, d->m_stubServer.errorString()); + return tr("Cannot create socket \"%1\": %2").arg(stubServer, d->m_stubServer.errorString()); } return QString(); } |