diff options
author | Eike Rathke <erack@redhat.com> | 2016-11-22 19:50:52 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-11-22 19:56:33 +0100 |
commit | 50244309501d738e7314fa79785db139c826f8d7 (patch) | |
tree | 109eba4ff688bfc1762420b261ae3957c857995d /offapi | |
parent | 8e31d8a27baa76564f3b71e0d31750ae56873c61 (diff) |
[API Change] revert incompatible change of enum css::sheet::GeneralFunction
Quick solution before 5-3 branch off without reverting everything related.
This will need a new constant value type for API instead of the enum and an
internal mapping from/to the enum.
Kept the GeneralFunction_MEDIAN at all places in uing code so it can be
easily grep'ed for.
Change-Id: I95256649f16ded08e467003d2924be0ff5efb87f
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/GeneralFunction.idl | 7 | ||||
-rw-r--r-- | offapi/type_reference/offapi.idl | 3 |
2 files changed, 2 insertions, 8 deletions
diff --git a/offapi/com/sun/star/sheet/GeneralFunction.idl b/offapi/com/sun/star/sheet/GeneralFunction.idl index a7d3416316a1..ff9615c1a709 100644 --- a/offapi/com/sun/star/sheet/GeneralFunction.idl +++ b/offapi/com/sun/star/sheet/GeneralFunction.idl @@ -93,13 +93,8 @@ published enum GeneralFunction /** variance is calculated based on the entire population. */ - VARP, + VARP - /** - * median of all numerical values is calculated. - * @since LibreOffice 5.3 - */ - MEDIAN }; diff --git a/offapi/type_reference/offapi.idl b/offapi/type_reference/offapi.idl index 04d89e86726e..c7268343d6f5 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -11492,8 +11492,7 @@ module com { STDEV = 9, STDEVP = 10, VAR = 11, - VARP = 12, - MEDIAN = 13 + VARP = 12 }; /** @deprecated */ published interface XConsolidationDescriptor { interface ::com::sun::star::uno::XInterface; |