forked from qt-creator/qt-creator
Tasking::Async: Rename Async into AsyncTask
Rename Utils::AsyncTask into Utils::Async. Rename AsyncTaskBase into AsyncTask. Task-number: QTCREATORBUG-29102 Change-Id: I3aa24d84138c19922d4f61b1c9cf15bc8989f60e Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
@@ -249,11 +249,11 @@ void AttachCoreDialog::accepted()
|
||||
|
||||
const Group root = {
|
||||
parallel,
|
||||
Async<ResultType>{[=](auto &task) {
|
||||
AsyncTask<ResultType>{[=](auto &task) {
|
||||
task.setConcurrentCallData(copyFileAsync, this->coreFile());
|
||||
},
|
||||
[=](const auto &task) { d->coreFileResult = task.result(); }},
|
||||
Async<ResultType>{[=](auto &task) {
|
||||
AsyncTask<ResultType>{[=](auto &task) {
|
||||
task.setConcurrentCallData(copyFileAsync, this->symbolFile());
|
||||
},
|
||||
[=](const auto &task) { d->symbolFileResult = task.result(); }},
|
||||
|
||||
Reference in New Issue
Block a user