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 /sc/source/ui/src | |
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 'sc/source/ui/src')
-rw-r--r-- | sc/source/ui/src/scfuncs.src | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/sc/source/ui/src/scfuncs.src b/sc/source/ui/src/scfuncs.src index 3e35e7933448..a248d72e2836 100644 --- a/sc/source/ui/src/scfuncs.src +++ b/sc/source/ui/src/scfuncs.src @@ -11974,6 +11974,52 @@ Resource RID_SC_FUNCTION_DESCRIPTIONS2 Text [ en-US ] = "URI of the webservice"; }; }; + Resource SC_OPCODE_ERF_MS + { + String 1 // Description + { + Text [ en-US] = "Returns the error function."; + }; + ExtraData = + { + 0; + ID_FUNCTION_GRP_STATISTIC; + U2S( HID_FUNC_ERF_MS ); + 1; 0; + 0; + }; + String 2 // Name of Parameter 1 + { + Text [ en-US ] = "Lower Limit"; + }; + String 3 // Description of Parameter 1 + { + Text [ en-US ] = "The lower limit for integration"; + }; + }; + Resource SC_OPCODE_ERFC_MS + { + String 1 // Description + { + Text [ en-US] = "Returns the complementary error function."; + }; + ExtraData = + { + 0; + ID_FUNCTION_GRP_STATISTIC; + U2S( HID_FUNC_ERFC_MS ); + 1; 0; + 0; + }; + String 2 // Name of Parameter 1 + { + Text [ en-US ] = "Lower Limit"; + }; + String 3 // Description of Parameter 1 + { + Text [ en-US ] = "The lower limit for integration"; + }; + }; }; #if defined(U2S) |