From 1ad13d9a8a7759852ec685e51ddf0c33ce585285 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Tue, 21 Nov 2023 09:53:28 +0100 Subject: [PATCH] Add: bool const m_alwaysDownloadConfig; bool const m_alwaysDownloadDC; --- worker.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/worker.h b/worker.h index 735037b..44d642c 100644 --- a/worker.h +++ b/worker.h @@ -124,6 +124,8 @@ class Worker : public QThread{ QString const m_customerRepositoryPath; QString const m_customerRepository; bool const m_noUpdatePsaHardware; + bool const m_alwaysDownloadConfig; + bool const m_alwaysDownloadDC; bool const m_dryRun; QObject *m_parent; QString const m_serialInterface; @@ -331,6 +333,8 @@ public: QString pluginName, QString workingDir = ".", bool noUpdatePsaHardware = false, + bool alwaysDownloadConfig = false, + bool alwaysDownloadDC = false, bool dryRun = false, QObject *parent = nullptr, char const *serialInterface = SERIAL_PORT,