summaryrefslogtreecommitdiff
path: root/include/formula
diff options
context:
space:
mode:
authorLaurent Charrière <lcharriere@gmail.com>2015-01-13 10:50:24 +0100
committerEike Rathke <erack@redhat.com>2015-01-14 19:54:47 +0000
commitf7f8d82a25b0c55bcd2225ca0cac1d93c676f544 (patch)
treea38436d0cde51fd92e51129053b40436baab5d59 /include/formula
parent3fe6a6b3ca3bc0c7d46fabf66f11f1ef6b4cd4cc (diff)
fdo#85818: rename SC_OPCODE_GGT to SC_OPCODE_GCD
Change-Id: I65a79d4e88f82cb76d9b6ab39f06a11acd4f3e41 Reviewed-on: https://gerrit.libreoffice.org/13895 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/formula')
-rw-r--r--include/formula/compiler.hrc2
-rw-r--r--include/formula/opcode.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc
index c69f4fa18905..fc47ae817b05 100644
--- a/include/formula/compiler.hrc
+++ b/include/formula/compiler.hrc
@@ -208,7 +208,7 @@
#define SC_OPCODE_TRUNC 207
#define SC_OPCODE_LOG 208
#define SC_OPCODE_POWER 209
-#define SC_OPCODE_GGT 210
+#define SC_OPCODE_GCD 210
#define SC_OPCODE_LCM 211
#define SC_OPCODE_MOD 212
#define SC_OPCODE_SUM_PRODUCT 213
diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx
index 9b7867eb05c5..724667f6a4df 100644
--- a/include/formula/opcode.hxx
+++ b/include/formula/opcode.hxx
@@ -200,7 +200,7 @@ enum OpCode : sal_uInt16
ocTrunc = SC_OPCODE_TRUNC,
ocLog = SC_OPCODE_LOG,
ocPower = SC_OPCODE_POWER,
- ocGCD = SC_OPCODE_GGT,
+ ocGCD = SC_OPCODE_GCD,
ocLCM = SC_OPCODE_LCM,
ocMod = SC_OPCODE_MOD,
ocSumProduct = SC_OPCODE_SUM_PRODUCT,