forked from qt-creator/qt-creator
All: Replace most SynchronousProcess by QtcProcess
Change-Id: I0bf22fef2cd4a7297ef5a1e9aa9c3e2b9348ba42 Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
@@ -123,7 +123,7 @@ public:
|
||||
// This is called once per job in a thread.
|
||||
// When called from the UI thread it will execute fully synchronously, so no signals will
|
||||
// be triggered!
|
||||
virtual void runCommand(Utils::SynchronousProcess &process,
|
||||
virtual void runCommand(Utils::QtcProcess &process,
|
||||
const CommandLine &command,
|
||||
const QString &workingDirectory = QString());
|
||||
|
||||
@@ -153,10 +153,10 @@ private:
|
||||
void run(QFutureInterface<void> &future);
|
||||
|
||||
// Run without a event loop in fully blocking mode. No signals will be delivered.
|
||||
void runFullySynchronous(SynchronousProcess &proc,
|
||||
void runFullySynchronous(QtcProcess &proc,
|
||||
const QString &workingDirectory);
|
||||
// Run with an event loop. Signals will be delivered.
|
||||
void runSynchronous(SynchronousProcess &proc,
|
||||
void runSynchronous(QtcProcess &proc,
|
||||
const QString &workingDirectory);
|
||||
|
||||
class Internal::ShellCommandPrivate *const d;
|
||||
|
||||
Reference in New Issue
Block a user