[Libreoffice-commits] core.git: sc/inc

Marco Cecchetti marco.cecchetti at collabora.com
Mon Oct 2 16:47:22 UTC 2017


 sc/inc/address.hxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8429590a4479cfceb7cd73cdb0fa90aee0ea22ca
Author: Marco Cecchetti <marco.cecchetti at collabora.com>
Date:   Wed Mar 29 13:57:31 2017 +0200

    lok - sc: lift row limit to 500k
    
    Due to previously intruduced optimizations, it is safe and fast enough
    to navigate through a 500k rows speadsheet.
    
    Change-Id: I865d0b60629b5bbf796e9e48df6ff21242a13e5a
    Reviewed-on: https://gerrit.libreoffice.org/40454
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Marco Cecchetti <mrcekets at gmail.com>

diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx
index b5b7f1ad689a..193c85934b07 100644
--- a/sc/inc/address.hxx
+++ b/sc/inc/address.hxx
@@ -73,7 +73,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.


More information about the Libreoffice-commits mailing list