diff options
author | Rüdiger Timm <rt@openoffice.org> | 2004-08-20 08:08:07 +0000 |
---|---|---|
committer | Rüdiger Timm <rt@openoffice.org> | 2004-08-20 08:08:07 +0000 |
commit | 705c9efde11e4648c5661cc6658c47ba7c753a34 (patch) | |
tree | 00309a3830be4634615f046ce855e3fcdde518da /sc/inc/global.hxx | |
parent | e37f4382b3b8b4c39a2ec5249dd468ba7bfa429b (diff) |
INTEGRATION: CWS rowlimit2 (1.36.6); FILE MERGED
2004/07/30 17:42:35 er 1.36.6.2: RESYNC: (1.36-1.37); FILE MERGED
2004/06/18 20:00:20 er 1.36.6.1: #i28834# increased row limit memory footprint reduction, compressed array; raw check-in before vacation
Diffstat (limited to 'sc/inc/global.hxx')
-rw-r--r-- | sc/inc/global.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sc/inc/global.hxx b/sc/inc/global.hxx index 1ad2cfd12cf9..9d9da3572872 100644 --- a/sc/inc/global.hxx +++ b/sc/inc/global.hxx @@ -2,9 +2,9 @@ * * $RCSfile: global.hxx,v $ * - * $Revision: 1.37 $ + * $Revision: 1.38 $ * - * last change: $Author: rt $ $Date: 2004-06-17 12:36:30 $ + * last change: $Author: rt $ $Date: 2004-08-20 09:08:07 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -239,12 +239,12 @@ const SCSIZE PIVOT_MAXPAGEFIELD = 10; // Flags fuer Spalten / Zeilen // FILTERED immer zusammen mit HIDDEN // FILTERED und MANUALSIZE nur fuer Zeilen moeglich -#define CR_HIDDEN 1 -//#define CR_MARKED 2 -#define CR_PAGEBREAK 4 -#define CR_MANUALBREAK 8 -#define CR_FILTERED 16 -#define CR_MANUALSIZE 32 +const BYTE CR_HIDDEN = 1; +//const BYTE CR_MARKED = 2; +const BYTE CR_PAGEBREAK = 4; +const BYTE CR_MANUALBREAK = 8; +const BYTE CR_FILTERED = 16; +const BYTE CR_MANUALSIZE = 32; // was davon kommt in die Datei: #define CR_SAVEMASK ( ~CR_PAGEBREAK ) |