Valgrind: Fix passing multiple arguments to inferior

Change-Id: Iabed71d294e0d0a8775588da1fa2164ef39df455
Reviewed-by: hjk <hjk121@nokiamail.com>
This commit is contained in:
Christian Stenger
2014-06-04 11:16:39 +02:00
committed by hjk
parent e3f340f71a
commit 8f6c5cde95

View File

@@ -308,7 +308,7 @@ QString ValgrindProcess::argumentString(Utils::OsType osType) const
{
QString arguments = Utils::QtcProcess::joinArgs(m_valgrindArguments, osType);
Utils::QtcProcess::addArg(&arguments, m_debuggeeExecutable, osType);
Utils::QtcProcess::addArg(&arguments, m_debuggeeArguments, osType);
Utils::QtcProcess::addArgs(&arguments, m_debuggeeArguments);
return arguments;
}