summaryrefslogtreecommitdiff
path: root/src/plugins/valgrind/valgrindruncontrolfactory.cpp
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2016-01-06 16:50:36 +0100
committerhjk <hjk@theqtcompany.com>2016-01-18 16:35:40 +0000
commite7956000df038731957d488c4c0a68a4c7813f2d (patch)
tree351d4196cd26eca6c3abac366a726509f1719f44 /src/plugins/valgrind/valgrindruncontrolfactory.cpp
parent9a0062a9428b7cc013f9cd24c6f7f095f360b525 (diff)
downloadqt-creator-e7956000df038731957d488c4c0a68a4c7813f2d.tar.gz
RemoteLinux: Use QString instead of QStringList for process arguments
This is almost uniformly used everywhere else. Change-Id: I1ef9abb24066b21652aeb994b18ea3e19f48b3c6 Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'src/plugins/valgrind/valgrindruncontrolfactory.cpp')
-rw-r--r--src/plugins/valgrind/valgrindruncontrolfactory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/valgrind/valgrindruncontrolfactory.cpp b/src/plugins/valgrind/valgrindruncontrolfactory.cpp
index 789d2f02fd..47759cb857 100644
--- a/src/plugins/valgrind/valgrindruncontrolfactory.cpp
+++ b/src/plugins/valgrind/valgrindruncontrolfactory.cpp
@@ -104,7 +104,7 @@ RunControl *ValgrindRunControlFactory::create(RunConfiguration *runConfiguration
qobject_cast<RemoteLinux::AbstractRemoteLinuxRunConfiguration *>(runConfiguration)) {
sp.debuggee = rc2->remoteExecutableFilePath();
sp.connParams = DeviceKitInformation::device(rc2->target()->kit())->sshParameters();
- sp.debuggeeArgs = rc2->arguments().join(QLatin1Char(' '));
+ sp.debuggeeArgs = rc2->arguments();
} else {
QTC_ASSERT(false, return 0);
}