diff options
author | Tamás Zolnai <tamas.zolnai@collabora.com> | 2016-11-21 13:57:29 +0000 |
---|---|---|
committer | Tamás Zolnai <tamas.zolnai@collabora.com> | 2016-11-21 13:42:56 +0000 |
commit | eabfd1b60f8e181e0ef2721e716210390528f4ce (patch) | |
tree | fc371295a499b646352765c2c9be55d093e629c0 /offapi | |
parent | 796ace6f14a1d2676b11609b624fea43675486fe (diff) |
[API Change]: Move recently added median function to the end of enum
Change-Id: Ie6f2c6f53b354552b855264faea1ae9f5cb2b76d
Reviewed-on: https://gerrit.libreoffice.org/31041
Reviewed-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Tested-by: Tamás Zolnai <tamas.zolnai@collabora.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/sheet/GeneralFunction.idl | 14 | ||||
-rw-r--r-- | offapi/type_reference/offapi.idl | 18 |
2 files changed, 15 insertions, 17 deletions
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; |