diff options
author | Eike Rathke <erack@redhat.com> | 2015-12-16 22:22:13 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-12-17 15:14:43 +0100 |
commit | db1e34aecd4290623a74b9bbeb602e072b1a49ec (patch) | |
tree | 6e1c5605e9c49e99ab6179166692c270f5da5e88 /include/formula | |
parent | 348d7f6170d6ab83c8086f097aed7bdb1b64930a (diff) |
add RAWSUBTRACT spreadsheet function, tdf#71459
Change-Id: I2ae13771c85044b771e253a8189a30cb4aecb30f
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/compiler.hrc | 3 | ||||
-rw-r--r-- | include/formula/opcode.hxx | 1 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 984ec02c0edd..5e8f7b568ce9 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -485,7 +485,8 @@ #define SC_OPCODE_NETWORKDAYS 474 #define SC_OPCODE_FLOOR_MATH 475 #define SC_OPCODE_FLOOR_PRECISE 476 -#define SC_OPCODE_STOP_2_PAR 477 /* last function with two or more parameters' OpCode + 1 */ +#define SC_OPCODE_RAWSUBTRACT 477 +#define SC_OPCODE_STOP_2_PAR 478 /* last function with two or more parameters' OpCode + 1 */ #define SC_OPCODE_STOP_FUNCTION SC_OPCODE_STOP_2_PAR /* last function's OpCode + 1 */ #define SC_OPCODE_LAST_OPCODE_ID (SC_OPCODE_STOP_FUNCTION - 1) /* last OpCode */ diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx index 0c4c8e8f510e..a767dfcc3a06 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -281,6 +281,7 @@ enum OpCode : sal_uInt16 ocEffective = SC_OPCODE_EFFECTIVE, ocNominal = SC_OPCODE_NOMINAL, ocSubTotal = SC_OPCODE_SUB_TOTAL, + ocRawSubtract = SC_OPCODE_RAWSUBTRACT, // Database functions ocDBSum = SC_OPCODE_DB_SUM, ocDBCount = SC_OPCODE_DB_COUNT, |