From d2d730589b1f5608d798caa3ca063e29609c48e3 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Fri, 4 Aug 2023 13:38:33 +0200 Subject: [PATCH] changed return type of returnCode() ti 'int' --- worker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worker.h b/worker.h index 94a01e4..6a745cb 100644 --- a/worker.h +++ b/worker.h @@ -157,7 +157,7 @@ public: IsmasClient const &getIsmasClient() const { return m_ismasClient; } bool updateProcessRunning() const { return m_updateProcessRunning; } - bool returnCode() const { return m_returnCode; } + int returnCode() const { return m_returnCode; } int machineNr() const { return m_machineNr; } int customerNr() const { return m_customerNr; }