summaryrefslogtreecommitdiff
path: root/sc/source/ui/inc
diff options
context:
space:
mode:
authorHossein <hossein@libreoffice.org>2024-01-24 01:17:28 +0100
committerHossein <hossein@libreoffice.org>2024-01-29 13:19:40 +0100
commit07203b8ed8cc7a392c196b695c9a5c60955b732b (patch)
treed5bcbab959283ec4e511220134263881a30427f6 /sc/source/ui/inc
parent1e49f469afcbf3d1abec25451117f5f10d3ba825 (diff)
tdf#158426 Limit field columns for data form to 32
Previously, maximum number of field columns for data form was 256, which was too much. But, even with that value, nothing was happening when exceeding that threshold. With this patch, the limit is decreased to 32, and if the user goes beyond this limit by selecting more columns, an error message is displayed. This change is done to prevent LibreOffice hang when excessive number of filed columns are selected and using data form is requested. Change-Id: Ib6189b5b3beffb26a3fd8ba8cd06e4ae213f77da Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162488 Tested-by: Jenkins Reviewed-by: Hossein <hossein@libreoffice.org>
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r--sc/source/ui/inc/datafdlg.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/inc/datafdlg.hxx b/sc/source/ui/inc/datafdlg.hxx
index 4a05cbf1a1fc..cb61d0cc3cc5 100644
--- a/sc/source/ui/inc/datafdlg.hxx
+++ b/sc/source/ui/inc/datafdlg.hxx
@@ -16,7 +16,7 @@
class ScTabViewShell;
class ScDocument;
-#define MAX_DATAFORM_COLS 256
+#define MAX_DATAFORM_COLS 32
#define MAX_DATAFORM_ROWS 32000
class ScDataFormDlg : public weld::GenericDialogController