summaryrefslogtreecommitdiff
path: root/sc/source/core/opencl/op_math.hxx
diff options
context:
space:
mode:
authorLaurent Charrière <lcharriere@gmail.com>2015-01-07 15:58:44 +0100
committerNoel Grandin <noelgrandin@gmail.com>2015-01-09 12:45:04 +0000
commit5af576c2fcf8ebdc517b3919dd0ef808b09b04a1 (patch)
treef9757e8a00bb68a8dba3043ded874d8f69769b25 /sc/source/core/opencl/op_math.hxx
parent2963dbb5ce65a141051cb3e4e3ed06a6ed31574c (diff)
fdo#85818: rename Kombin, Kombin2, Variationen, Variationen2
Rename OcKombin to OcCombin, SC_OPCODE_KOMBIN to SC_OPCODE_COMBIN, ScInterpreter::ScKombin() to ScInterpreter::ScCombin(), OpKombin to OpCombin. Rename OcKombin2 to OcCombinA, SC_OPCODE_KOMBIN_2 to SC_OPCODE_COMBIN_A, ScInterpreter::ScKombin2() to ScInterpreter::ScCombinA(), OpKombin2 to OpCombinA. Rename OcVariationen to OcPermut, SC_OPCODE_VARIATIONEN to SC_OPCODE_PERMUT, ScInterpreter::ScVariationen() to ScInterpreter::ScPermut(), OpVariationen to OpPermut. Rename OcVariationen2 to OcPermutationA, SC_OPCODE_VARIATIONEN_2 to SC_OPCODE_PERMUTATION_A, ScInterpreter::ScVariationen2() to ScInterpreter::ScPermutationA(), OpVariationen2 to OpPermutationA. Change-Id: I2efa01e9b160e98058879d08e2e2313284a5ec91 Reviewed-on: https://gerrit.libreoffice.org/13814 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sc/source/core/opencl/op_math.hxx')
-rw-r--r--sc/source/core/opencl/op_math.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/opencl/op_math.hxx b/sc/source/core/opencl/op_math.hxx
index e839cf37b8d1..3929154c698b 100644
--- a/sc/source/core/opencl/op_math.hxx
+++ b/sc/source/core/opencl/op_math.hxx
@@ -412,7 +412,7 @@ public:
virtual std::string BinFuncName(void) const SAL_OVERRIDE { return "SqrtPi"; }
};
-class OpCombina: public Normal
+class OpCombinA: public Normal
{
public:
virtual void GenSlidingWindowFunction(std::stringstream &ss,
@@ -429,12 +429,12 @@ public:
virtual std::string BinFuncName(void) const SAL_OVERRIDE { return "Log"; }
};
-class OpKombin: public Normal{
+class OpCombin: public Normal{
public:
virtual void GenSlidingWindowFunction(std::stringstream &ss,
const std::string &sSymName, SubArguments &vSubArguments) SAL_OVERRIDE;
virtual std::string GetBottom(void) SAL_OVERRIDE { return "0.0"; }
- virtual std::string BinFuncName(void) const SAL_OVERRIDE { return "ScKombin"; }
+ virtual std::string BinFuncName(void) const SAL_OVERRIDE { return "ScCombin"; }
};
class OpAverageIf: public CheckVariables
{