summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-03-27 11:02:27 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-03-28 01:12:47 -0400
commitd824279a225b9a5b5d5391ec86ffb744406d6ecb (patch)
treed4341bc85e19ad2630da8bc569325a997de81bcc /sc/inc
parentd9bcb1b2b9eb975f505ce72461f9d5eeef07145c (diff)
sal_Bool to bool.
Change-Id: I9da5f03553855bd4d3ed349e281edeea3f565488
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/fillinfo.hxx21
1 files changed, 9 insertions, 12 deletions
diff --git a/sc/inc/fillinfo.hxx b/sc/inc/fillinfo.hxx
index e3fdb6e5af42..93826d8b438a 100644
--- a/sc/inc/fillinfo.hxx
+++ b/sc/inc/fillinfo.hxx
@@ -117,21 +117,18 @@ struct CellInfo
sal_uInt16 nWidth;
sal_uInt8 nRotateDir;
- sal_Bool bMarked : 1;
- sal_Bool bEmptyCellText : 1;
-
- sal_Bool bMerged : 1;
- sal_Bool bHOverlapped : 1;
- sal_Bool bVOverlapped : 1;
- sal_Bool bAutoFilter : 1;
+ bool bMarked : 1;
+ bool bEmptyCellText : 1;
+ bool bMerged : 1;
+ bool bHOverlapped : 1;
+ bool bVOverlapped : 1;
+ bool bAutoFilter : 1;
bool bPivotButton:1;
bool bPivotPopupButton:1;
bool bFilterActive:1;
-
- sal_Bool bPrinted : 1; // when required (pagebreak mode)
-
- sal_Bool bHideGrid : 1; // output-internal
- sal_Bool bEditEngine : 1; // output-internal
+ bool bPrinted : 1; // when required (pagebreak mode)
+ bool bHideGrid : 1; // output-internal
+ bool bEditEngine : 1; // output-internal
CellInfo():
pColorScale(NULL),