From 4d45aaa7b72fdbf9ba4f0239aeb0fda3fa799f38 Mon Sep 17 00:00:00 2001 From: leo Date: Mon, 21 Oct 2013 21:49:26 +0000 Subject: [PATCH] Fixed incorrect update message. --- qt/lc_qupdatedialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt/lc_qupdatedialog.cpp b/qt/lc_qupdatedialog.cpp index e053e17a..055f8326 100644 --- a/qt/lc_qupdatedialog.cpp +++ b/qt/lc_qupdatedialog.cpp @@ -120,7 +120,7 @@ void lcQUpdateDialog::replyFinished(QNetworkReply *reply) } if (updateAvailable) - status = QString(tr("

There's a newer version of LeoCAD available for download (%1.%2.%3).

")).arg(majorVersion, minorVersion, patchVersion); + status = QString(tr("

There's a newer version of LeoCAD available for download (%1.%2.%3).

")).arg(QString::number(majorVersion), QString::number(minorVersion), QString::number(patchVersion)); else status = tr("

You are using the latest LeoCAD version.

");