summaryrefslogtreecommitdiff
path: root/sc/inc/fillinfo.hxx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-10-05 15:16:14 +0000
committerKurt Zenker <kz@openoffice.org>2006-10-05 15:16:14 +0000
commita0b693710c05fb018c4ac5d65680066bddd43fa2 (patch)
tree4047346c08b834f2d042c93ca7afdad37d7a1cd5 /sc/inc/fillinfo.hxx
parentf9d5c9151aa41fccb6099624a998e4cc6655d373 (diff)
INTEGRATION: CWS dr50 (1.3.264); FILE MERGED
2006/09/04 10:55:06 nn 1.3.264.1: #i68672# save a few bytes on CellInfo
Diffstat (limited to 'sc/inc/fillinfo.hxx')
-rw-r--r--sc/inc/fillinfo.hxx32
1 files changed, 16 insertions, 16 deletions
diff --git a/sc/inc/fillinfo.hxx b/sc/inc/fillinfo.hxx
index 7deca1bad6b5..50f84a3fd34f 100644
--- a/sc/inc/fillinfo.hxx
+++ b/sc/inc/fillinfo.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: fillinfo.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 17:39:47 $
+ * last change: $Author: kz $ $Date: 2006-10-05 16:16:14 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -92,28 +92,28 @@ struct CellInfo
const SvxShadowItem* pShadowAttr; // Original-Item (intern)
- ScShadowPart eHShadowPart; // Schatten effektiv zum Zeichnen
- ScShadowPart eVShadowPart;
const SvxShadowItem* pHShadowOrigin;
const SvxShadowItem* pVShadowOrigin;
+ ScShadowPart eHShadowPart : 4; // Schatten effektiv zum Zeichnen
+ ScShadowPart eVShadowPart : 4;
+ BYTE nClipMark;
USHORT nWidth;
+ BYTE nRotateDir;
- BOOL bMarked;
- BYTE nClipMark;
- BOOL bEmptyCellText;
+ BOOL bMarked : 1;
+ BOOL bEmptyCellText : 1;
- BOOL bMerged;
- BOOL bHOverlapped;
- BOOL bVOverlapped;
- BOOL bAutoFilter;
- BOOL bPushButton;
- BYTE nRotateDir;
+ BOOL bMerged : 1;
+ BOOL bHOverlapped : 1;
+ BOOL bVOverlapped : 1;
+ BOOL bAutoFilter : 1;
+ BOOL bPushButton : 1;
- BOOL bPrinted; // bei Bedarf (Pagebreak-Modus)
+ BOOL bPrinted : 1; // bei Bedarf (Pagebreak-Modus)
- BOOL bHideGrid; // output-intern
- BOOL bEditEngine; // output-intern
+ BOOL bHideGrid : 1; // output-intern
+ BOOL bEditEngine : 1; // output-intern
};
const SCCOL SC_ROTMAX_NONE = SCCOL_MAX;