From 5499bcf8f3e1bfdf6240e4432558bd3f3dbd958e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Sun, 8 Nov 2020 14:56:04 +0100 Subject: [PATCH] Typo fixed --- Software/PC_Application/appwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Software/PC_Application/appwindow.cpp b/Software/PC_Application/appwindow.cpp index d421894..45676f2 100644 --- a/Software/PC_Application/appwindow.cpp +++ b/Software/PC_Application/appwindow.cpp @@ -323,10 +323,10 @@ void AppWindow::StartFirmwareUpdateDialog() void AppWindow::DeviceNeedsUpdate(int reported, int expected) { auto ret = QMessageBox::warning(this, "Warning", - "The device reports are different protocol" + "The device reports a different protocol" "version (" + QString::number(reported) + ") than expected (" + QString::number(expected) + ").\n" - "A firmware update is strongly suggested. Do you want to update now?", - QMessageBox::Yes | QMessageBox::No); + "A firmware update is strongly recommended. Do you want to update now?", + QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes); if (ret == QMessageBox::Yes) { StartFirmwareUpdateDialog(); }