diff options
author | Winfried Donkers <winfrieddonkers@libreoffice.org> | 2013-10-30 19:46:23 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-10-30 19:06:39 +0000 |
commit | cea5b8eb497f7b162ea1743401c9045d286e5d8e (patch) | |
tree | eede0d899e732500e2796122af927ef36ca93dd1 | |
parent | 5e50987119d4ac6878911ad07e19680cc30384b9 (diff) |
fdo#70000 fix omission in support of Excel 2010
functions COVARIANCE.P and COVARIANCE.S
Change-Id: Ic5416626a8e6790e4a65d7017c739106897fa1f1
Reviewed-on: https://gerrit.libreoffice.org/6494
Tested-by: Eike Rathke <erack@redhat.com>
Reviewed-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | sc/source/core/tool/parclass.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/core/tool/parclass.cxx b/sc/source/core/tool/parclass.cxx index 7f86e6300fa9..afb859884b1a 100644 --- a/sc/source/core/tool/parclass.cxx +++ b/sc/source/core/tool/parclass.cxx @@ -89,6 +89,8 @@ const ScParameterClassification::RawData ScParameterClassification::pRawData[] = { ocCountIf, {{ Reference, Value }, 0 }}, { ocCountIfs, {{ Reference, Value }, 2 }}, { ocCovar, {{ ForceArray, ForceArray }, 0 }}, + { ocCovarianceP, {{ ForceArray, ForceArray }, 0 }}, + { ocCovarianceS, {{ ForceArray, ForceArray }, 0 }}, { ocDBAverage, {{ Reference, Reference, Reference }, 0 }}, { ocDBCount, {{ Reference, Reference, Reference }, 0 }}, { ocDBCount2, {{ Reference, Reference, Reference }, 0 }}, |