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/plugins/remotelinux/remotelinuxcustomcommanddeployservice.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/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp')
-rw-r--r-- | src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp index b9afe28dd9..14d28cc976 100644 --- a/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp +++ b/src/plugins/remotelinux/remotelinuxcustomcommanddeployservice.cpp @@ -97,7 +97,7 @@ void RemoteLinuxCustomCommandDeployService::doDeploy() connect(d->runner, SIGNAL(readyReadStandardError()), SLOT(handleStderr())); connect(d->runner, SIGNAL(processClosed(int)), SLOT(handleProcessClosed(int))); - emit progressMessage(tr("Starting remote command '%1'...").arg(d->commandLine)); + emit progressMessage(tr("Starting remote command \"%1\"...").arg(d->commandLine)); d->state = Running; d->runner->run(d->commandLine.toUtf8(), deviceConfiguration()->sshParameters()); } |