diff options
author | Laurent Charrière <lcharriere@gmail.com> | 2015-01-13 10:46:38 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-01-14 19:54:00 +0000 |
commit | 3fe6a6b3ca3bc0c7d46fabf66f11f1ef6b4cd4cc (patch) | |
tree | 8eba98b485b9893075d785a6e0202dacd3e7c915 /include | |
parent | e613c9fba449fda0db163de413eeda50f521db41 (diff) |
fdo#85818: rename SC_OPCODE_KGV to SC_OPCODE_LCM
Change-Id: I4a49a00a8cc74c7ff0752ef0bffbf855fecb232c
Reviewed-on: https://gerrit.libreoffice.org/13894
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/formula/compiler.hrc | 2 | ||||
-rw-r--r-- | include/formula/opcode.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 6ace7417c3be..c69f4fa18905 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -209,7 +209,7 @@ #define SC_OPCODE_LOG 208 #define SC_OPCODE_POWER 209 #define SC_OPCODE_GGT 210 -#define SC_OPCODE_KGV 211 +#define SC_OPCODE_LCM 211 #define SC_OPCODE_MOD 212 #define SC_OPCODE_SUM_PRODUCT 213 #define SC_OPCODE_SUM_SQ 214 diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx index 039aaaa4a0b9..9b7867eb05c5 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -201,7 +201,7 @@ enum OpCode : sal_uInt16 ocLog = SC_OPCODE_LOG, ocPower = SC_OPCODE_POWER, ocGCD = SC_OPCODE_GGT, - ocLCM = SC_OPCODE_KGV, + ocLCM = SC_OPCODE_LCM, ocMod = SC_OPCODE_MOD, ocSumProduct = SC_OPCODE_SUM_PRODUCT, ocSumSQ = SC_OPCODE_SUM_SQ, |