From d124e2e0cba25e914bb885a4efd785294790227c Mon Sep 17 00:00:00 2001 From: iTrooz Date: Thu, 28 Nov 2024 17:50:40 +0100 Subject: [PATCH] cleanup --- launcher/tasks/Task.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/launcher/tasks/Task.h b/launcher/tasks/Task.h index 60799498f..7a61ddbb4 100644 --- a/launcher/tasks/Task.h +++ b/launcher/tasks/Task.h @@ -146,15 +146,14 @@ class Task : public QObject, public QRunnable { void details(QString details); void stepProgress(TaskStepProgress const& task_progress); - /** Emitted when the canAbort() status has changed. - */ + //! Emitted when the canAbort() status has changed. */ void abortStatusChanged(bool can_abort); public slots: // QRunnable's interface void run() override { start(); } - // used by the task caller to start the task + //! used by the task caller to start the task virtual void start(); //! used by external code to ask the task to aborta virtual bool abort()