From 2a010e5cdbe5ebf9a94b59d8a1e7e4557cbd1c52 Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 6 Jan 2019 20:57:17 +0100 Subject: Fixed version notification messages. --- src/mainwindow.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index ae37968c..e9d86810 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1834,9 +1834,9 @@ void MainWindow::processUpdates() { if (currentVersion > lastVersion) settings.setValue("version", currentVersion.toString()); else if (currentVersion < lastVersion) - qWarning() << tr("Notice: Your current MO version (%1) is lower than the previous version (%2).
" - "The GUI may not downgrade gracefully, so you may experience oddities.
" - "However, there should be no serious issues.").arg(lastVersion.toString()).arg(currentVersion.toString()).toStdWString(); + qWarning() << tr("Notice: Your current MO version (%1) is lower than the previously used one (%2). " + "The GUI may not downgrade gracefully, so you may experience oddities. " + "However, there should be no serious issues.").arg(currentVersion.toString()).arg(lastVersion.toString()).toStdWString(); } void MainWindow::storeSettings(QSettings &settings) { -- cgit v1.3.1