summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2019-05-30 23:56:25 +0900
committerMichael Stahl <Michael.Stahl@cib.de>2019-05-31 11:29:35 +0200
commit932c1bd99f4b99705c3948d0babaa1f4160f37c3 (patch)
tree5149cbfcd1bc9465d15cd354501d5029537a258d /cui
parent6d21e8d651ace0704e954bb13bdc8f67c17b1a41 (diff)
tdf#124936 Show "(x86)" in About dialog on the 32-bit version
... installed on Windows. Change-Id: I2a4d846265b69f0e46e4c711430689ce39d60fcd Reviewed-on: https://gerrit.libreoffice.org/73211 Reviewed-by: Michael Stahl <Michael.Stahl@cib.de> Tested-by: Michael Stahl <Michael.Stahl@cib.de>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/about.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 7d5266682144..cdafad532c2c 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -313,6 +313,8 @@ OUString AboutDialog::GetVersionString()
#ifdef _WIN64
sVersion += " (x64)";
+#elif defined(_WIN32)
+ sVersion += " (x86)";
#endif
OUString sBuildId = GetBuildId();