summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-11-11 12:31:58 +0200
committerMichael Meeks <michael.meeks@collabora.com>2013-11-20 18:23:04 +0000
commitfeca57d41d515959e3f730eb372a3d33bb251a03 (patch)
treead276b0e8582704189fd7c9840223d150e7f4cca /sc/inc
parente064677047d924074d327081eeb8c15f76d62e48 (diff)
Use the more generic CompiledFormula type
Change-Id: I91d2e956b76919c56d14712789198c3c10470742
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/formulacell.hxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/sc/inc/formulacell.hxx b/sc/inc/formulacell.hxx
index a6200c9ca0e8..4e56b6ab795d 100644
--- a/sc/inc/formulacell.hxx
+++ b/sc/inc/formulacell.hxx
@@ -33,6 +33,7 @@
namespace sc {
class CLBuildKernelThread;
+class CompiledFormula;
class StartListeningContext;
class EndListeningContext;
struct RefUpdateContext;
@@ -40,12 +41,6 @@ struct RefUpdateInsertTabContext;
struct RefUpdateDeleteTabContext;
struct RefUpdateMoveTabContext;
-namespace opencl {
-
-class DynamicKernel;
-
-}
-
}
class ScFormulaCell;
@@ -58,7 +53,7 @@ struct SC_DLLPUBLIC ScFormulaCellGroup : boost::noncopyable
mutable size_t mnRefCount;
ScTokenArray* mpCode;
- sc::opencl::DynamicKernel* mpDynamicKernel;
+ sc::CompiledFormula* mpCompiledFormula;
ScFormulaCell *mpTopCell;
SCROW mnLength; // How many of these do we have ?
short mnFormatType;