TaskTree: Replace usages of OnGroup... with onGroup... functions

Change-Id: I06ce6c917ac28b6362ad2cdef42355e5aa28f4eb
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Jarek Kobus
2023-05-02 12:31:16 +02:00
parent 04382d39a0
commit 0793b945f3
18 changed files with 142 additions and 142 deletions

View File

@@ -261,18 +261,18 @@ Group QnxDeployQtLibrariesDialogPrivate::deployRecipe()
return TaskAction::Continue;
};
const Group root {
OnGroupSetup(setupHandler),
onGroupSetup(setupHandler),
Group {
optional,
checkDirTask()
},
Group {
OnGroupSetup(subGroupSetupHandler),
onGroupSetup(subGroupSetupHandler),
removeDirTask(),
uploadTask(),
chmodTree()
},
OnGroupDone(doneHandler)
onGroupDone(doneHandler)
};
return root;
}