summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
authorMichael Meeks <michael.meeks@collabora.com>2016-07-01 20:49:19 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-07-07 11:43:50 +0000
commitff0154aa3c4b295432e8502758b40337569b71b4 (patch)
treef00062b2f4092a23b2687ea71ae9ac6e0c1f25f2 /cui
parentfff704af3e4cbd20214e581ed47e47ccd752de1f (diff)
cui: add calculation mode to Help->About.
Reviewed-on: https://gerrit.libreoffice.org/26964 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Meeks <michael.meeks@collabora.com> (cherry picked from commit adc3932dfc4fe763b7db0af8843b01614bdc6aa2) Change-Id: I4765436bed8a58c5097afcf7dce768d3ec325015 Reviewed-on: https://gerrit.libreoffice.org/27003 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/about.cxx13
1 files changed, 13 insertions, 0 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 89e83b5a0dc9..de6b4dcc844a 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -47,6 +47,8 @@
#include <sfx2/app.hxx>
#include <rtl/ustrbuf.hxx>
#include <vcl/bitmap.hxx>
+
+#include <opencl/openclwrapper.hxx>
#include <officecfg/Office/Common.hxx>
using namespace ::com::sun::star::uno;
@@ -302,6 +304,17 @@ OUString AboutDialog::GetVersionString()
sVersion += m_aLocaleStr.replaceAll("$LOCALE", aLocaleStr);
}
+ OUString aCalcMode = "Calc: "; // Calc calculation mode
+ bool bSWInterp = officecfg::Office::Common::Misc::UseSwInterpreter::get();
+ bool bOpenCL = opencl::GPUEnv::isOpenCLEnabled();
+ if (bOpenCL)
+ aCalcMode += "CL";
+ else if (bSWInterp)
+ aCalcMode += "group";
+ else
+ aCalcMode += "single";
+ sVersion += "; " + aCalcMode;
+
return sVersion;
}