diff options
author | Tor Lillqvist <tml@collabora.com> | 2017-08-25 16:30:00 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2017-08-25 16:31:11 +0300 |
commit | bafe8a5ef091a83a90d639fd3f583422fa055d53 (patch) | |
tree | 1a66ca81e65ac26d93c37b1270c95d623b2515d2 /sc | |
parent | c47eb8afd1b941a4dca832cfad85ba750c76635d (diff) |
Follow-up fix for aa7dc5fa1df23f1a9079305cb362aab018e94848
Change-Id: If42c9d1594a43d7882df657e32806fab965be910
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/data/formulacell.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/core/data/formulacell.cxx b/sc/source/core/data/formulacell.cxx index e9a0e4c6652a..82c5f970e911 100644 --- a/sc/source/core/data/formulacell.cxx +++ b/sc/source/core/data/formulacell.cxx @@ -4130,7 +4130,7 @@ bool ScFormulaCell::InterpretFormulaGroup() // Heuristic: Certain old low-end OpenCL implementations don't // work for us with too large group lengths. 1000 was determined // empirically to be a good compromise. - if (opencl::gpuEnv.mbNeedsTDRAvoidance) + if (openclwrapper::gpuEnv.mbNeedsTDRAvoidance) nMaxGroupLength = 1000; #endif |