From df931a5b0f48707e34ebfacb695996198ece8f44 Mon Sep 17 00:00:00 2001 From: Winfried Donkers Date: Wed, 6 Feb 2013 19:09:00 +0100 Subject: fdo#60322 add calc function SKEWP as in ODFF v1.2 Change-Id: I4851df1473fc7788af1ac642bb0fb527ec872821 Reviewed-on: https://gerrit.libreoffice.org/2020 Reviewed-by: Eike Rathke Tested-by: Eike Rathke --- formula/inc/formula/compiler.hrc | 5 +++-- formula/inc/formula/opcode.hxx | 1 + 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'formula/inc') diff --git a/formula/inc/formula/compiler.hrc b/formula/inc/formula/compiler.hrc index 7f976ae3a163..da27a19b6cd8 100644 --- a/formula/inc/formula/compiler.hrc +++ b/formula/inc/formula/compiler.hrc @@ -398,8 +398,9 @@ #define SC_OPCODE_SUM_IFS 403 #define SC_OPCODE_AVERAGE_IFS 404 #define SC_OPCODE_COUNT_IFS 405 -#define SC_OPCODE_STOP_2_PAR 406 -#define SC_OPCODE_LAST_OPCODE_ID 405 /* last OpCode */ +#define SC_OPCODE_SKEWP 406 +#define SC_OPCODE_STOP_2_PAR 407 +#define SC_OPCODE_LAST_OPCODE_ID 406 /* last OpCode */ /*** Internal ***/ #define SC_OPCODE_INTERNAL_BEGIN 9999 diff --git a/formula/inc/formula/opcode.hxx b/formula/inc/formula/opcode.hxx index 007bcd92adf0..b94c066a624b 100644 --- a/formula/inc/formula/opcode.hxx +++ b/formula/inc/formula/opcode.hxx @@ -328,6 +328,7 @@ enum OpCodeEnum ocStandard = SC_OPCODE_STANDARD, ocAveDev = SC_OPCODE_AVE_DEV, ocSchiefe = SC_OPCODE_SCHIEFE, + ocSkewp = SC_OPCODE_SKEWP, ocDevSq = SC_OPCODE_DEV_SQ, ocMedian = SC_OPCODE_MEDIAN, ocModalValue = SC_OPCODE_MODAL_VALUE, -- cgit