Kaydet (Commit) 05676088 authored tarafından Miklos Vajna's avatar Miklos Vajna

cui: fix Android build

Change-Id: I6396d7702de42ad2cec3843e919cca084e92c008
üst f2027aab
......@@ -48,7 +48,9 @@
#include <rtl/ustrbuf.hxx>
#include <vcl/bitmap.hxx>
#if HAVE_FEATURE_OPENCL
#include <opencl/openclwrapper.hxx>
#endif
#include <officecfg/Office/Common.hxx>
using namespace ::com::sun::star::uno;
......@@ -304,6 +306,7 @@ OUString AboutDialog::GetVersionString()
sVersion += m_aLocaleStr.replaceAll("$LOCALE", aLocaleStr);
}
#if HAVE_FEATURE_OPENCL
OUString aCalcMode = "Calc: "; // Calc calculation mode
bool bSWInterp = officecfg::Office::Common::Misc::UseSwInterpreter::get();
bool bOpenCL = opencl::GPUEnv::isOpenCLEnabled();
......@@ -314,6 +317,7 @@ OUString AboutDialog::GetVersionString()
else
aCalcMode += "single";
sVersion += "; " + aCalcMode;
#endif
return sVersion;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment