diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-05-31 21:39:52 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-05-31 21:39:52 +0200 |
commit | a31908292e070aacb05558f9728c440d5acf4c14 (patch) | |
tree | 3fa0361a9cde419f6a50eec95d0508bd34a3f090 /sc/inc/address.hxx | |
parent | cdf832caa70e36febf60cb7a6f4c0553d4f852e5 (diff) |
set table limit to 32000
the performance of the insert algorithm allows now to create more than 10000 sheets in a reasonable time
Diffstat (limited to 'sc/inc/address.hxx')
-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 e5095b97688d..1dd9727d9c5b 100644 --- a/sc/inc/address.hxx +++ b/sc/inc/address.hxx @@ -91,7 +91,7 @@ const SCSIZE SCSIZE_MAX = ::std::numeric_limits<SCSIZE>::max(); // Count values const SCROW MAXROWCOUNT = MAXROWCOUNT_DEFINE; const SCCOL MAXCOLCOUNT = MAXCOLCOUNT_DEFINE; -const SCTAB MAXTABCOUNT = 10000; +const SCTAB MAXTABCOUNT = 32000; const SCCOLROW MAXCOLROWCOUNT = MAXROWCOUNT; // Maximum values const SCROW MAXROW = MAXROWCOUNT - 1; |