| author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-11 12:32:49 (GMT) |
|---|---|---|
| committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2012-10-11 12:36:10 (GMT) |
| commit | 458d68fffa883bc706638299e5a5b2d1399beb0d (patch) (side-by-side diff) | |
| tree | 0186c6e0a9abcd8c36d5bd8f1f4d49851a8569b9 | |
| parent | 9015ecfc1a9d05ac6d8917be7f9a2cb1d0b1126b (diff) | |
| download | core-458d68fffa883bc706638299e5a5b2d1399beb0d.zip core-458d68fffa883bc706638299e5a5b2d1399beb0d.tar.gz | |
kill this hard coded sheet limit for xlsx import, rhbz#864858
Change-Id: I8fe6523afb11e5b24b8c83784e1198e8c694922a
| -rw-r--r-- | sc/source/filter/oox/addressconverter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/oox/addressconverter.cxx b/sc/source/filter/oox/addressconverter.cxx index 52e74eb..1da3966 100644 --- a/sc/source/filter/oox/addressconverter.cxx +++ b/sc/source/filter/oox/addressconverter.cxx @@ -57,7 +57,7 @@ using ::rtl::OUStringToOString; namespace { //! TODO: this limit may change, is there a way to obtain it via API? -const sal_Int16 API_MAXTAB = 255; +const sal_Int16 API_MAXTAB = MAXTAB; const sal_Int32 OOX_MAXCOL = static_cast< sal_Int32 >( (1 << 14) - 1 ); const sal_Int32 OOX_MAXROW = static_cast< sal_Int32 >( (1 << 20) - 1 ); |
