[Libreoffice-commits] core.git: Branch 'distro/lhm/libreoffice-6-4+backports' - offapi/com offapi/UnoApi_offapi.mk

Samuel Mehrbrodt (via logerrit) logerrit at kemper.freedesktop.org
Mon Jun 28 08:55:29 UTC 2021


 offapi/UnoApi_offapi.mk                        |    2 +-
 offapi/com/sun/star/sheet/FilterFieldType.idl  |   10 +++++-----
 offapi/com/sun/star/sheet/FilterFieldValue.idl |    2 +-
 3 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit 25e8f02f5a6fd32cc31bb14ab34cb1302b89f2b8
Author:     Samuel Mehrbrodt <samuel.mehrbrodt at allotropia.de>
AuthorDate: Mon May 17 13:19:59 2021 +0200
Commit:     Thorsten Behrens <thorsten.behrens at allotropia.de>
CommitDate: Mon Jun 28 10:54:57 2021 +0200

    Fix types and order
    
    Change-Id: Icd98c02a3bdc361423f668173bf6feb5f5b11e4d
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/115703
    Tested-by: Jenkins
    Reviewed-by: Samuel Mehrbrodt <samuel.mehrbrodt at allotropia.de>
    (cherry picked from commit 5c682a5e24337ac022fb3eba585583b16718d246)
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116602
    Tested-by: Thorsten Behrens <thorsten.behrens at allotropia.de>
    Reviewed-by: Thorsten Behrens <thorsten.behrens at allotropia.de>

diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index c360c7e5f270..250ca702194c 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -3412,8 +3412,8 @@ $(eval $(call gb_UnoApi_add_idlfiles,offapi,com/sun/star/sheet,\
 	FillDirection \
 	FillMode \
 	FilterConnection \
-	FilterFieldValue \
 	FilterFieldType \
+	FilterFieldValue \
 	FilterOperator \
 	FilterOperator2 \
 	FormulaLanguage \
diff --git a/offapi/com/sun/star/sheet/FilterFieldType.idl b/offapi/com/sun/star/sheet/FilterFieldType.idl
index 0a5113c7a075..59a9807379e6 100644
--- a/offapi/com/sun/star/sheet/FilterFieldType.idl
+++ b/offapi/com/sun/star/sheet/FilterFieldType.idl
@@ -18,19 +18,19 @@ module com {  module sun {  module star {  module sheet {
 constants FilterFieldType
 {
    /** Filter by numeric value */
-   const short NUMERIC = 0;
+   const long NUMERIC = 0;
 
    /** Filter by string value */
-   const short STRING = 1;
+   const long STRING = 1;
 
    /** Filter by date */
-   const short DATE = 2;
+   const long DATE = 2;
 
    /** Filter by text color */
-   const short TEXT_COLOR = 3;
+   const long TEXT_COLOR = 3;
 
    /** Filter by background color */
-   const short BACKGROUND_COLOR = 4;
+   const long BACKGROUND_COLOR = 4;
 };
 
 }; }; }; };
diff --git a/offapi/com/sun/star/sheet/FilterFieldValue.idl b/offapi/com/sun/star/sheet/FilterFieldValue.idl
index 12e9b8ba62e8..a8930ee0f6ac 100644
--- a/offapi/com/sun/star/sheet/FilterFieldValue.idl
+++ b/offapi/com/sun/star/sheet/FilterFieldValue.idl
@@ -45,7 +45,7 @@ struct FilterFieldValue
         @see com::sun::star::sheet::FilterFieldType
         @since LibreOffice 7.2
      */
-    short FilterType;
+    long FilterType;
 
     /** The color which is used for filtering
 


More information about the Libreoffice-commits mailing list