diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2013-10-20 09:38:19 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-10-25 13:07:32 +0000 |
commit | 4a122d1e61278debe7e386e3d9f442e68eddba9b (patch) | |
tree | 32847e55a1516cdbc4253604c40217f0b2b7870d /include/formula | |
parent | b5efef87efdce56c2491e6de1370ad42b998a8df (diff) |
fdo#44134 adding Excel 2010 functions STDEV.P and STDEV.S
Change-Id: If7b2767a69285ac72fa7120b1149a66f118cce8f
Reviewed-on: https://gerrit.libreoffice.org/6354
Tested-by: Eike Rathke <erack@redhat.com>
Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/formula')
-rw-r--r-- | include/formula/compiler.hrc | 4 | ||||
-rw-r--r-- | include/formula/opcode.hxx | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 21449b536302..bb8090007a8a 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -410,8 +410,10 @@ #define SC_OPCODE_WEBSERVICE 412 #define SC_OPCODE_COVARIANCE_S 413 #define SC_OPCODE_COVARIANCE_P 414 +#define SC_OPCODE_ST_DEV_P_MS 415 +#define SC_OPCODE_ST_DEV_S 416 -#define SC_OPCODE_STOP_2_PAR 415 /* last function with two or more parameters' OpCode + 1 */ +#define SC_OPCODE_STOP_2_PAR 417 /* 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 9ebd9d57db1a..79b229c70755 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -222,6 +222,8 @@ enum OpCodeEnum ocVarP = SC_OPCODE_VAR_P, ocStDev = SC_OPCODE_ST_DEV, ocStDevP = SC_OPCODE_ST_DEV_P, + ocStDevP_MS = SC_OPCODE_ST_DEV_P_MS, + ocStDevS = SC_OPCODE_ST_DEV_S, ocB = SC_OPCODE_B, ocNormDist = SC_OPCODE_NORM_DIST, ocExpDist = SC_OPCODE_EXP_DIST, |