diff options
author | Shane Kearns <shane.kearns@accenture.com> | 2011-08-01 15:44:25 (GMT) |
---|---|---|
committer | Shane Kearns <shane.kearns@accenture.com> | 2011-08-02 14:25:54 (GMT) |
commit | c617d7f63af6778da402b52ef0a09748a9452e21 (patch) | |
tree | fb51901aaf77121a6002fecb46ede34d4d41f2be | |
parent | 448fffdd8f22a1b5af07b20c8ff5cf3f0f8de608 (diff) | |
download | Qt-c617d7f63af6778da402b52ef0a09748a9452e21.zip Qt-c617d7f63af6778da402b52ef0a09748a9452e21.tar.gz Qt-c617d7f63af6778da402b52ef0a09748a9452e21.tar.bz2 |
runonphone: command line args improperly passed to TRK after CODA patch
-rw-r--r-- | tools/runonphone/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/runonphone/main.cpp b/tools/runonphone/main.cpp index 6610908..868a2a8 100644 --- a/tools/runonphone/main.cpp +++ b/tools/runonphone/main.cpp @@ -270,7 +270,7 @@ int main(int argc, char *argv[]) if (!exeFile.isEmpty()) { launcher->addStartupActions(trk::Launcher::ActionRun); launcher->setFileName(QString("c:\\sys\\bin\\") + info.fileName()); - launcher->setCommandLineArgs(cmdLine.join(QLatin1String(", "))); + launcher->setCommandLineArgs(cmdLine.join(QLatin1String(" "))); } if (!downloadRemoteFile.isEmpty() && !downloadLocalFile.isEmpty()) { launcher->addStartupActions(trk::Launcher::ActionDownload); |