From 56deaabb32346e0cc9c6946d7d53ba251f4450b2 Mon Sep 17 00:00:00 2001 From: Winfried Donkers Date: Fri, 11 Apr 2014 09:46:51 +0200 Subject: fdo#73149 add Excel 2010 functions ERF.PRECISE and ERFC.PRECISE Change-Id: I3199470ec92923e8cc12156f21dd397d870cc1e0 Reviewed-on: https://gerrit.libreoffice.org/8930 Reviewed-by: Eike Rathke Tested-by: Eike Rathke --- include/formula/compiler.hrc | 4 +++- include/formula/opcode.hxx | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'include/formula') diff --git a/include/formula/compiler.hrc b/include/formula/compiler.hrc index 47d22aab3d1c..96ea885d4b8f 100644 --- a/include/formula/compiler.hrc +++ b/include/formula/compiler.hrc @@ -192,7 +192,9 @@ #define SC_OPCODE_UNICHAR 160 #define SC_OPCODE_GAMMA 161 #define SC_OPCODE_GAMMA_LN_MS 162 -#define SC_OPCODE_STOP_1_PAR 163 +#define SC_OPCODE_ERF_MS 163 +#define SC_OPCODE_ERFC_MS 164 +#define SC_OPCODE_STOP_1_PAR 165 /*** Functions with more than one parameters ***/ #define SC_OPCODE_START_2_PAR 201 diff --git a/include/formula/opcode.hxx b/include/formula/opcode.hxx index 4239c538bcd2..f5afa19abca3 100644 --- a/include/formula/opcode.hxx +++ b/include/formula/opcode.hxx @@ -460,6 +460,8 @@ enum OpCodeEnum ocEuroConvert = SC_OPCODE_EUROCONVERT, ocFilterXML = SC_OPCODE_FILTERXML, ocWebservice = SC_OPCODE_WEBSERVICE, + ocErf_MS = SC_OPCODE_ERF_MS, + ocErfc_MS = SC_OPCODE_ERFC_MS, // internal stuff ocInternalBegin = SC_OPCODE_INTERNAL_BEGIN, ocTTT = SC_OPCODE_TTT, -- cgit