From 760ecd71fc48c9d8a3e825273bcc325b35c4be65 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Tue, 10 Jun 2014 13:48:27 +0200 Subject: [PATCH] Theme: Show the stringified app version rather than the major version. This was a regression, we changed that by accident in 1.6.0. --- src/mirall/theme.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/theme.cpp b/src/mirall/theme.cpp index 713e07cec..8628508cb 100644 --- a/src/mirall/theme.cpp +++ b/src/mirall/theme.cpp @@ -212,7 +212,7 @@ QString Theme::about() const "

Distributed by %4 and licensed under the GNU General Public License (GPL) Version 2.0.
" "%5 and the %5 logo are registered trademarks of %4 in the
" "United States, other countries, or both.

") - .arg(MIRALL_VERSION_MAJOR).arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)) + .arg(MIRALL_VERSION_STRING).arg("http://" MIRALL_STRINGIFY(APPLICATION_DOMAIN)) .arg(MIRALL_STRINGIFY(APPLICATION_DOMAIN)).arg(APPLICATION_VENDOR).arg(APPLICATION_NAME); }