diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2015-02-26 17:09:10 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2015-03-24 22:04:50 +0000 |
commit | f1f4167bac271f4b7f4ed766db4b077f94fd4daa (patch) | |
tree | 422f81c4b7c89e12b1953f8a0de8684482e4be87 /formula | |
parent | ff9fde527ec05a71c27fa3109ef4b57216f785dd (diff) |
tdf#40835 add ODFF function FDIST
and clean up F-Distribution function names.
Change-Id: I8666659269121b3ea32e8179b42e3497aa86754f
Reviewed-on: https://gerrit.libreoffice.org/14657
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'formula')
-rw-r--r-- | formula/source/core/api/token.cxx | 2 | ||||
-rw-r--r-- | formula/source/core/resource/core_resource.src | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/formula/source/core/api/token.cxx b/formula/source/core/api/token.cxx index 117f276fb6c4..39067e262e92 100644 --- a/formula/source/core/api/token.cxx +++ b/formula/source/core/api/token.cxx @@ -1055,6 +1055,7 @@ inline bool MissingConventionOOXML::isRewriteNeeded( OpCode eOp ) const case ocIndex: case ocGammaDist: + case ocFDist_LT: case ocPoissonDist: case ocNormDist: case ocLogNormDist: @@ -1166,6 +1167,7 @@ void FormulaMissingContext::AddMoreArgs( FormulaTokenArray *pNewArr, const Missi break; case ocGammaDist: + case ocFDist_LT: case ocNormDist: if (mnCurArg == 2) { diff --git a/formula/source/core/resource/core_resource.src b/formula/source/core/resource/core_resource.src index b6e6f7e25f77..31d5d9446add 100644 --- a/formula/source/core/resource/core_resource.src +++ b/formula/source/core/resource/core_resource.src @@ -299,7 +299,7 @@ Resource RID_STRLIST_FUNCTION_NAMES_ENGLISH_ODFF String SC_OPCODE_T_DIST_MS { Text = "COM.MICROSOFT.T.DIST" ; }; String SC_OPCODE_T_DIST_RT { Text = "COM.MICROSOFT.T.DIST.RT" ; }; String SC_OPCODE_F_DIST { Text = "LEGACY.FDIST" ; }; - String SC_OPCODE_F_DIST_LT { Text = "COM.MICROSOFT.F.DIST" ; }; + String SC_OPCODE_F_DIST_LT { Text = "FDIST" ; }; String SC_OPCODE_F_DIST_RT { Text = "COM.MICROSOFT.F.DIST.RT" ; }; String SC_OPCODE_CHI_DIST { Text = "LEGACY.CHIDIST" ; }; String SC_OPCODE_CHI_DIST_MS { Text = "COM.MICROSOFT.CHISQ.DIST.RT" ; }; |