summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/xmlcoli.hxx
diff options
context:
space:
mode:
authorSascha Ballach <sab@openoffice.org>2001-02-28 07:19:33 +0000
committerSascha Ballach <sab@openoffice.org>2001-02-28 07:19:33 +0000
commitc2bda18d768eb79f88eedad50678fdf5e2da8740 (patch)
tree54701cb444b6de85a01d27d9f3181e3c5cf270af /sc/source/filter/xml/xmlcoli.hxx
parent97cada06335fcae871379ec67051187b462d542f (diff)
all member bools take now only one bit
Diffstat (limited to 'sc/source/filter/xml/xmlcoli.hxx')
-rw-r--r--sc/source/filter/xml/xmlcoli.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/filter/xml/xmlcoli.hxx b/sc/source/filter/xml/xmlcoli.hxx
index 03a962f8a82b..e49aa294b98c 100644
--- a/sc/source/filter/xml/xmlcoli.hxx
+++ b/sc/source/filter/xml/xmlcoli.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xmlcoli.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: sab $ $Date: 2000-11-01 13:19:03 $
+ * last change: $Author: sab $ $Date: 2001-02-28 08:19:33 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -103,9 +103,9 @@ class ScXMLTableColsContext : public SvXMLImportContext
sal_Int32 nHeaderEndCol;
sal_Int32 nGroupStartCol;
sal_Int32 nGroupEndCol;
- sal_Bool bHeader;
- sal_Bool bGroup;
- sal_Bool bGroupDisplay;
+ sal_Bool bHeader : 1;
+ sal_Bool bGroup : 1;
+ sal_Bool bGroupDisplay : 1;
const ScXMLImport& GetScImport() const { return (const ScXMLImport&)GetImport(); }
ScXMLImport& GetScImport() { return (ScXMLImport&)GetImport(); }