diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2014-04-11 09:46:51 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-04-11 13:43:14 +0000 |
commit | 56deaabb32346e0cc9c6946d7d53ba251f4450b2 (patch) | |
tree | 46f837503ca80406f53946db0bea3c33d1f52b1f /include | |
parent | ba1452c2615604fd1d446dd0f1f55b5501f1b76d (diff) |
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 <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include')
-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 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, |