forked from qt-creator/qt-creator
WinRt: Use new Utils::CommandLine
Change-Id: I7320f92199af439225233b6a1bcf0ec0b185cdcb Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -1521,4 +1521,19 @@ QString QtcProcess::Arguments::toString() const
|
||||
return QtcProcess::joinArgs(m_unixArgs, OsTypeLinux);
|
||||
}
|
||||
|
||||
void CommandLine::addArg(const QString &arg)
|
||||
{
|
||||
QtcProcess::addArg(&m_arguments, arg);
|
||||
}
|
||||
|
||||
void CommandLine::addArgs(const QStringList &inArgs)
|
||||
{
|
||||
QtcProcess::addArgs(&m_arguments, inArgs);
|
||||
}
|
||||
|
||||
void CommandLine::addArgs(const QString &inArgs)
|
||||
{
|
||||
QtcProcess::addArgs(&m_arguments, inArgs);
|
||||
}
|
||||
|
||||
} // namespace Utils
|
||||
|
||||
Reference in New Issue
Block a user