diff options
author | Tor Lillqvist <tml@collabora.com> | 2015-03-09 23:43:43 +0200 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2015-03-09 23:44:20 +0200 |
commit | 451cb9aace6d0d207b99691be025bd4bb8968a32 (patch) | |
tree | def635028ad4bab0f7a99840d6c03025b955d9dc /sc/inc/address.hxx | |
parent | 1c2405ba44c5a146188c19e235f857ab18ea05f0 (diff) |
SC_LIMIT_ROWS is not defined anywhere
Diffstat (limited to 'sc/inc/address.hxx')
-rw-r--r-- | sc/inc/address.hxx | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/sc/inc/address.hxx b/sc/inc/address.hxx index 6bf55340f563..cbaccc185d58 100644 --- a/sc/inc/address.hxx +++ b/sc/inc/address.hxx @@ -96,19 +96,8 @@ const SCROW SCROW_REPEAT_NONE = SCROW_MAX; #endif const SCROW SCROWS64K = 65536; -// old stuff defines #define MAXROW_30 8191 -#ifdef SC_LIMIT_ROWS -#undef MAXROWCOUNT_DEFINE -#define MAXROWCOUNT_DEFINE 8192 -const SCROW W16MAXROWCOUNT = MAXROWCOUNT_DEFINE; -const SCROW W16MAXROW = W16MAXROWCOUNT - 1; -#define MAXROWCOUNT W16MAXROWCOUNT -#define MAXROW W16MAXROW -#endif - -// old stuff defines end SAL_WARN_UNUSED_RESULT inline bool ValidCol( SCCOL nCol ) { return nCol >= static_cast<SCCOL>(0) && nCol <= MAXCOL; |