diff options
author | Marco Cecchetti <marco.cecchetti@collabora.com> | 2017-03-29 13:57:31 +0200 |
---|---|---|
committer | Jan Holesovsky <kendy@collabora.com> | 2017-04-04 16:37:30 +0200 |
commit | 105ce60b5274c19bf4f359d31bd4ee37698620bc (patch) | |
tree | 80146e7db4e5c3c6847918354b49129352499641 /sc/inc | |
parent | f675f9531483cb59d34c13f3746010e438298704 (diff) |
LOK - Calc: lift row limit to 500k
Due to previously intruduced optimizations, it is safe and fast enough
to navigate through a 500k rows document.
Change-Id: I8055672b58ea3c1e262f6e49d029eb0cf67086b5
Diffstat (limited to 'sc/inc')
-rw-r--r-- | sc/inc/address.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx index aa5d4f14017b..43cad11ef409 100644 --- a/sc/inc/address.hxx +++ b/sc/inc/address.hxx @@ -71,7 +71,7 @@ const SCCOL MAXCOL = MAXCOLCOUNT - 1; const SCTAB MAXTAB = MAXTABCOUNT - 1; const SCCOLROW MAXCOLROW = MAXROW; // Maximun tiled rendering values -const SCROW MAXTILEDROW = 10000; +const SCROW MAXTILEDROW = 500000; // Limit the initial tab count to prevent users to set the count too high, // which could cause the memory usage of blank documents to exceed the // available system memory. |