From eabfd1b60f8e181e0ef2721e716210390528f4ce Mon Sep 17 00:00:00 2001 From: Tamás Zolnai Date: Mon, 21 Nov 2016 13:57:29 +0000 Subject: [API Change]: Move recently added median function to the end of enum MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie6f2c6f53b354552b855264faea1ae9f5cb2b76d Reviewed-on: https://gerrit.libreoffice.org/31041 Reviewed-by: Tamás Zolnai Tested-by: Tamás Zolnai --- offapi/com/sun/star/sheet/GeneralFunction.idl | 14 ++++++-------- offapi/type_reference/offapi.idl | 18 +++++++++--------- 2 files changed, 15 insertions(+), 17 deletions(-) (limited to 'offapi') diff --git a/offapi/com/sun/star/sheet/GeneralFunction.idl b/offapi/com/sun/star/sheet/GeneralFunction.idl index 726ae9dd6fb9..a7d3416316a1 100644 --- a/offapi/com/sun/star/sheet/GeneralFunction.idl +++ b/offapi/com/sun/star/sheet/GeneralFunction.idl @@ -56,13 +56,6 @@ published enum GeneralFunction AVERAGE, - /** - * median of all numerical values is calculated. - * @since LibreOffice 5.3 - */ - MEDIAN, - - /** maximum value of all numerical values is calculated. */ MAX, @@ -100,8 +93,13 @@ 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 b939b24eb509..e955541596a6 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -11484,15 +11484,15 @@ module com { SUM = 2, COUNT = 3, AVERAGE = 4, - MEDIAN = 5, - MAX = 6, - MIN = 7, - PRODUCT = 8, - COUNTNUMS = 9, - STDEV = 10, - STDEVP = 11, - VAR = 12, - VARP = 13 + MAX = 5, + MIN = 6, + PRODUCT = 7, + COUNTNUMS = 8, + STDEV = 9, + STDEVP = 10, + VAR = 11, + VARP = 12, + MEDIAN = 13 }; /** @deprecated */ published interface XConsolidationDescriptor { interface ::com::sun::star::uno::XInterface; -- cgit