[Libreoffice-commits] core.git: cui/source
David Ostrovsky
david at ostrovsky.org
Sat Jan 10 14:02:32 PST 2015
cui/source/dialogs/about.cxx | 6 ++++++
1 file changed, 6 insertions(+)
New commits:
commit bbde245ababf33ac704df116557e4849cc520df8
Author: David Ostrovsky <david at ostrovsky.org>
Date: Sat Jan 10 17:07:42 2015 +0100
About dialog: distinguish between 32 and 64 bit windows build
Change-Id: Id92bb3ed5c19cefed41eeaafe8b956cd2d563bf6
Reviewed-on: https://gerrit.libreoffice.org/13853
Reviewed-by: David Ostrovsky <david at ostrovsky.org>
Tested-by: David Ostrovsky <david at ostrovsky.org>
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 7e19f10..45242d3 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -252,6 +252,12 @@ OUString AboutDialog::GetVersionString()
{
OUString sVersion = m_aVersionTextStr;
+#ifdef _WIN64
+
+ sVersion += " (x64)";
+
+#endif
+
OUString sBuildId = GetBuildId();
OUString pLocaleStr = GetLocaleString();
More information about the Libreoffice-commits
mailing list