From 105ce60b5274c19bf4f359d31bd4ee37698620bc Mon Sep 17 00:00:00 2001 From: Marco Cecchetti Date: Wed, 29 Mar 2017 13:57:31 +0200 Subject: 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 --- sc/inc/address.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- cgit v1.2.3