summaryrefslogtreecommitdiff
path: root/offapi/com
diff options
context:
space:
mode:
authorTamás Zolnai <tamas.zolnai@collabora.com>2016-11-21 13:57:29 +0000
committerTamás Zolnai <tamas.zolnai@collabora.com>2016-11-21 13:42:56 +0000
commiteabfd1b60f8e181e0ef2721e716210390528f4ce (patch)
treefc371295a499b646352765c2c9be55d093e629c0 /offapi/com
parent796ace6f14a1d2676b11609b624fea43675486fe (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/com')
-rw-r--r--offapi/com/sun/star/sheet/GeneralFunction.idl14
1 files changed, 6 insertions, 8 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
};