diff options
author | Kohei Yoshida <kyoshida@novell.com> | 2010-11-16 14:50:24 -0500 |
---|---|---|
committer | Kohei Yoshida <kyoshida@novell.com> | 2010-11-16 14:50:57 -0500 |
commit | e26260a97f26377371c9e663854bbb87a352679f (patch) | |
tree | 3ab779f7fd92672e128a29921d2dd4288b55e268 /sc/inc/address.hxx | |
parent | 075d10f1cce846733b1334139cb7659b9bc13a65 (diff) |
Increased the sheet limit from 256 to 512.
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 c5bf78960c65..70076b7bd247 100644 --- a/sc/inc/address.hxx +++ b/sc/inc/address.hxx @@ -92,7 +92,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 = 256; +const SCTAB MAXTABCOUNT = 512; const SCCOLROW MAXCOLROWCOUNT = MAXROWCOUNT; // Maximum values const SCROW MAXROW = MAXROWCOUNT - 1; |