From 9a036cc2496e3f173c75f7132e1b164c121435e6 Mon Sep 17 00:00:00 2001 From: Eberhard Graether Date: Thu, 24 May 2018 20:17:32 +0200 Subject: [PATCH] ui: Fixed typo in update check (issue #586) --- src/lib_gui/qt/network/QtUpdateChecker.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib_gui/qt/network/QtUpdateChecker.cpp b/src/lib_gui/qt/network/QtUpdateChecker.cpp index 85f7a8a9..467346cb 100644 --- a/src/lib_gui/qt/network/QtUpdateChecker.cpp +++ b/src/lib_gui/qt/network/QtUpdateChecker.cpp @@ -142,7 +142,7 @@ void QtUpdateChecker::check(bool force, std::function callback) QMessageBox msgBox; msgBox.setText("Update Check"); msgBox.setInformativeText( - "Sourcetrial " + version + " is available for download: " + url + ""); + "Sourcetrail " + version + " is available for download: " + url + ""); msgBox.addButton("Close", QMessageBox::ButtonRole::NoRole); msgBox.addButton("Skip this Version", QMessageBox::ButtonRole::NoRole); QPushButton* but = msgBox.addButton("Download", QMessageBox::ButtonRole::YesRole);