[Libreoffice-commits] core.git: offapi/com offapi/type_reference

Tamás Zolnai tamas.zolnai at collabora.com
Mon Nov 21 13:43:18 UTC 2016


 offapi/com/sun/star/sheet/GeneralFunction.idl |   14 ++++++--------
 offapi/type_reference/offapi.idl              |   18 +++++++++---------
 2 files changed, 15 insertions(+), 17 deletions(-)

New commits:
commit eabfd1b60f8e181e0ef2721e716210390528f4ce
Author: Tamás Zolnai <tamas.zolnai at collabora.com>
Date:   Mon Nov 21 13:57:29 2016 +0000

    [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 at collabora.com>
    Tested-by: Tamás Zolnai <tamas.zolnai at collabora.com>

diff --git a/offapi/com/sun/star/sheet/GeneralFunction.idl b/offapi/com/sun/star/sheet/GeneralFunction.idl
index 726ae9d..a7d3416 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 b939b24..e955541 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;


More information about the Libreoffice-commits mailing list