diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-05-17 16:34:24 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2011-05-17 16:34:24 +0200 |
commit | dc0d7ee2d541ade161f252057c246caee7396952 (patch) | |
tree | 7ab9b9c5e5051b9f693a1013ce4c415d16d56cad /sc/inc/address.hxx | |
parent | 139707bb61ad2d129ba98a0c7b5b1a0a264922c9 (diff) |
increase table limit to 10000 for now
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 74920c7575b7..e5095b97688d 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 = 1024; +const SCTAB MAXTABCOUNT = 10000; const SCCOLROW MAXCOLROWCOUNT = MAXROWCOUNT; // Maximum values const SCROW MAXROW = MAXROWCOUNT - 1; |