summaryrefslogtreecommitdiff
path: root/cui
diff options
context:
space:
mode:
Diffstat (limited to 'cui')
-rw-r--r--cui/source/dialogs/about.cxx2
-rw-r--r--cui/source/options/optopencl.cxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 914c47438fcb..d5f0d2eabe89 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -335,7 +335,7 @@ OUString AboutDialog::GetVersionString()
#if HAVE_FEATURE_OPENCL
OUString aCalcMode = "Calc: "; // Calc calculation mode
bool bSWInterp = officecfg::Office::Common::Misc::UseSwInterpreter::get();
- bool bOpenCL = opencl::GPUEnv::isOpenCLEnabled();
+ bool bOpenCL = openclwrapper::GPUEnv::isOpenCLEnabled();
if (bOpenCL)
aCalcMode += "CL";
else if (bSWInterp)
diff --git a/cui/source/options/optopencl.cxx b/cui/source/options/optopencl.cxx
index 731f385976be..5e94bda5a12a 100644
--- a/cui/source/options/optopencl.cxx
+++ b/cui/source/options/optopencl.cxx
@@ -54,7 +54,7 @@ SvxOpenCLTabPage::SvxOpenCLTabPage(vcl::Window* pParent, const SfxItemSet& rSet)
mpUseOpenCL->Check(maConfig.mbUseOpenCL);
mpUseOpenCL->Enable(!officecfg::Office::Common::Misc::UseOpenCL::isReadOnly());
- bool bCLUsed = opencl::GPUEnv::isOpenCLEnabled();
+ bool bCLUsed = openclwrapper::GPUEnv::isOpenCLEnabled();
mpOclUsed->Show(bCLUsed);
mpOclNotUsed->Show(!bCLUsed);
}