From 0a28f0d82c2b66b55b64afea2e580c63ef130c2a Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 30 Aug 2023 11:39:37 +0200 Subject: [PATCH] Add message for current APISM version --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index 1a80fb4..743a471 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -38,8 +38,10 @@ MainWindow::MainWindow(Worker *worker, QWidget *parent) lst << QString("Machine number : %1 ").arg(m_worker->machineNr()).leftJustified(m_width-3); lst << QString("Customer number : %1 ").arg(m_worker->customerNr()).leftJustified(m_width-3); lst << QString("Zone number : %1 (%2)").arg(m_worker->zoneNr()).arg(Utils::zoneName(m_worker->zoneNr())).leftJustified(m_width-3); + lst << QString("APISM version : %1").arg(m_worker->apismVersion()).leftJustified(m_width-3); lst << QString("").leftJustified(m_width-3, '='); + ui->updateStatus->setText(lst.join('\n')); ui->updateStatus->setEnabled(true);