[Libreoffice-commits] core.git: offapi/com offapi/UnoApi_offapi.mk
Samuel Mehrbrodt (via logerrit)
logerrit at kemper.freedesktop.org
Mon May 17 14:25:31 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 5c682a5e24337ac022fb3eba585583b16718d246
Author: Samuel Mehrbrodt <samuel.mehrbrodt at allotropia.de>
AuthorDate: Mon May 17 13:19:59 2021 +0200
Commit: Samuel Mehrbrodt <samuel.mehrbrodt at allotropia.de>
CommitDate: Mon May 17 16:24:46 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>
diff --git a/offapi/UnoApi_offapi.mk b/offapi/UnoApi_offapi.mk
index 3abfc388ba95..4180c1194eff 100644
--- a/offapi/UnoApi_offapi.mk
+++ b/offapi/UnoApi_offapi.mk
@@ -3421,8 +3421,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