Fixed incorrect update message.

This commit is contained in:
leo
2013-10-21 21:49:26 +00:00
parent 0414e69462
commit 4d45aaa7b7
+1 -1
View File
@@ -120,7 +120,7 @@ void lcQUpdateDialog::replyFinished(QNetworkReply *reply)
}
if (updateAvailable)
status = QString(tr("<p>There's a newer version of LeoCAD available for download (%1.%2.%3).</p>")).arg(majorVersion, minorVersion, patchVersion);
status = QString(tr("<p>There's a newer version of LeoCAD available for download (%1.%2.%3).</p>")).arg(QString::number(majorVersion), QString::number(minorVersion), QString::number(patchVersion));
else
status = tr("<p>You are using the latest LeoCAD version.</p>");