From 807cea10426dda3b2da245d5aeb4e25f64dadb6b Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Mon, 5 Feb 2024 16:28:34 +0100 Subject: [PATCH] Added slots: void onReportDCDownloadStatus(QString const &status); void onReportDCDownloadSuccess(QString const &msg); void onReportDCDownloadFailure(QString const &errorMsg); --- update.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/update.h b/update.h index 8dcfaea..237d8c1 100644 --- a/update.h +++ b/update.h @@ -94,6 +94,8 @@ private slots: void readyReadStandardOutput(); void readyReadStandardError(); void finished(int exitCode, QProcess::ExitStatus exitStatus); - + void onReportDCDownloadStatus(QString const &status); + void onReportDCDownloadSuccess(QString const &msg); + void onReportDCDownloadFailure(QString const &errorMsg); }; #endif // UPDATE_H_INCLUDED