forked from qt-creator/qt-creator
Tasking::Process: Rename Process into ProcessTask
Rename QtcProcessAdapter into ProcessTaskAdapter. Task-number: QTCREATORBUG-29102 Change-Id: I1902c7176da75db60d70125f505084a2ea5ba774 Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -142,7 +142,7 @@ TaskItem QnxDeployQtLibrariesDialogPrivate::checkDirTask()
|
||||
}
|
||||
m_checkResult = CheckResult::SkipRemoveDir;
|
||||
};
|
||||
return Process(setupHandler, doneHandler, errorHandler);
|
||||
return ProcessTask(setupHandler, doneHandler, errorHandler);
|
||||
}
|
||||
|
||||
TaskItem QnxDeployQtLibrariesDialogPrivate::removeDirTask()
|
||||
@@ -159,7 +159,7 @@ TaskItem QnxDeployQtLibrariesDialogPrivate::removeDirTask()
|
||||
m_deployLogWindow->appendPlainText(Tr::tr("Connection failed: %1")
|
||||
.arg(process.errorString()));
|
||||
};
|
||||
return Process(setupHandler, {}, errorHandler);
|
||||
return ProcessTask(setupHandler, {}, errorHandler);
|
||||
}
|
||||
|
||||
TaskItem QnxDeployQtLibrariesDialogPrivate::uploadTask()
|
||||
@@ -212,7 +212,7 @@ TaskItem QnxDeployQtLibrariesDialogPrivate::chmodTask(const DeployableFile &file
|
||||
.arg(file.remoteFilePath(), process.cleanedStdErr()));
|
||||
}
|
||||
};
|
||||
return Process(setupHandler, {}, errorHandler);
|
||||
return ProcessTask(setupHandler, {}, errorHandler);
|
||||
}
|
||||
|
||||
TaskItem QnxDeployQtLibrariesDialogPrivate::chmodTree()
|
||||
|
||||
Reference in New Issue
Block a user