summaryrefslogtreecommitdiff
path: root/sc/source/filter/xml/XMLStylesExportHelper.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/XMLStylesExportHelper.hxx
parent97cada06335fcae871379ec67051187b462d542f (diff)
all member bools take now only one bit
Diffstat (limited to 'sc/source/filter/xml/XMLStylesExportHelper.hxx')
-rw-r--r--sc/source/filter/xml/XMLStylesExportHelper.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/filter/xml/XMLStylesExportHelper.hxx b/sc/source/filter/xml/XMLStylesExportHelper.hxx
index f3ce2e33d7de..8e09575b80a2 100644
--- a/sc/source/filter/xml/XMLStylesExportHelper.hxx
+++ b/sc/source/filter/xml/XMLStylesExportHelper.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: XMLStylesExportHelper.hxx,v $
*
- * $Revision: 1.7 $
+ * $Revision: 1.8 $
*
- * last change: $Author: sab $ $Date: 2001-02-05 13:43:01 $
+ * 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
@@ -104,9 +104,9 @@ struct ScMyValidation
com::sun::star::sheet::ValidationAlertStyle aAlertStyle;
com::sun::star::sheet::ValidationType aValidationType;
com::sun::star::sheet::ConditionOperator aOperator;
- sal_Bool bShowErrorMessage;
- sal_Bool bShowImputMessage;
- sal_Bool bIgnoreBlanks;
+ sal_Bool bShowErrorMessage : 1;
+ sal_Bool bShowImputMessage : 1;
+ sal_Bool bIgnoreBlanks : 1;
ScMyValidation();
~ScMyValidation();
@@ -146,7 +146,7 @@ struct ScMyRowFormatRange
sal_Int32 nRepeatRows;
sal_Int32 nIndex;
sal_Int32 nValidationIndex;
- sal_Bool bIsAutoStyle;
+ sal_Bool bIsAutoStyle : 1;
ScMyRowFormatRange();
sal_Bool operator<(const ScMyRowFormatRange& rRange);
@@ -178,7 +178,7 @@ struct ScMyFormatRange
com::sun::star::table::CellRangeAddress aRangeAddress;
sal_Int32 nStyleNameIndex;
sal_Int32 nValidationIndex;
- sal_Bool bIsAutoStyle;
+ sal_Bool bIsAutoStyle : 1;
ScMyFormatRange();
sal_Bool operator< (const ScMyFormatRange& rRange);