forked from qt-creator/qt-creator
ProjectExplorer: Normalize DeviceProcess::start() signature
Change-Id: I2915be34d4a1eed64567874dcf0263b7583cc142 Reviewed-by: Jarek Kobus <jaroslaw.kobus@qt.io>
This commit is contained in:
@@ -1478,6 +1478,12 @@ void CommandLine::addCommandLineAsArgs(const CommandLine &cmd)
|
||||
addArgs(cmd.splitArguments());
|
||||
}
|
||||
|
||||
void CommandLine::addCommandLineAsArgs(const CommandLine &cmd, RawType)
|
||||
{
|
||||
addArg(cmd.executable().path());
|
||||
addArgs(cmd.arguments(), Raw);
|
||||
}
|
||||
|
||||
void CommandLine::addArgs(const QString &inArgs, RawType)
|
||||
{
|
||||
ProcessArgs::addArgs(&m_arguments, inArgs);
|
||||
|
||||
Reference in New Issue
Block a user