From 7ace073d12445aaf57d6ab9db50617490b23ea24 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 7 Mar 2025 12:19:54 +0100 Subject: [PATCH] finished(): start summary timer when binary has finished. --- UpdatePTUDevCtrl/process/update_dc_command.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/UpdatePTUDevCtrl/process/update_dc_command.cpp b/UpdatePTUDevCtrl/process/update_dc_command.cpp index f802358..dba1c3e 100644 --- a/UpdatePTUDevCtrl/process/update_dc_command.cpp +++ b/UpdatePTUDevCtrl/process/update_dc_command.cpp @@ -1,5 +1,6 @@ #include "process/update_dc_command.h" #include "worker.h" +#include "utils_internal.h" UpdateDCCommand::UpdateDCCommand(QString const &command, Worker *worker, @@ -10,6 +11,10 @@ UpdateDCCommand::UpdateDCCommand(QString const &command, } void UpdateDCCommand::finished(int exitCode, QProcess::ExitStatus exitStatus) { + Worker *w = worker(); + if (w) { + w->summaryTimer()->start(); + } return UpdateCommand::finished(exitCode, exitStatus); }