summaryrefslogtreecommitdiff
path: root/sc/source/core/data/pagepar.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-12 10:43:45 +0200
committerNoel Grandin <noel@peralex.com>2014-02-14 14:15:01 +0200
commitf5c4fd14a8b36e565f3c43158197f2906027f3f0 (patch)
treefc041c5d0f2be97c45b025574b647518620f4760 /sc/source/core/data/pagepar.cxx
parent2928c88f6e27cdcaf8d524999c12da671e5d5874 (diff)
sal_Bool->bool
Change-Id: Ia411584e133b80eb72676acef6f004bf87898141
Diffstat (limited to 'sc/source/core/data/pagepar.cxx')
-rw-r--r--sc/source/core/data/pagepar.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sc/source/core/data/pagepar.cxx b/sc/source/core/data/pagepar.cxx
index cf4ef924854c..96a02adb16fc 100644
--- a/sc/source/core/data/pagepar.cxx
+++ b/sc/source/core/data/pagepar.cxx
@@ -40,11 +40,11 @@ ScPageTableParam::~ScPageTableParam()
void ScPageTableParam::Reset()
{
- bCellContent = sal_True;
+ bCellContent = true;
bNotes=bGrid=bHeaders=bDrawings=
bLeftRight=bScaleAll=bScaleTo=bScalePageNum=
bFormulas=bNullVals=bSkipEmpty=bForceBreaks = false;
- bTopDown=bScaleNone=bCharts=bObjects = sal_True;
+ bTopDown=bScaleNone=bCharts=bObjects = true;
nScaleAll = 100;
nScalePageNum = nScaleWidth = nScaleHeight = 0;
nFirstPageNo = 1;
@@ -52,7 +52,7 @@ void ScPageTableParam::Reset()
//------------------------------------------------------------------------
-sal_Bool ScPageTableParam::operator==( const ScPageTableParam& r ) const
+bool ScPageTableParam::operator==( const ScPageTableParam& r ) const
{
return ( memcmp( this, &r, sizeof(ScPageTableParam) ) == 0 );
}
@@ -84,9 +84,9 @@ void ScPageAreaParam::Reset()
//------------------------------------------------------------------------
-sal_Bool ScPageAreaParam::operator==( const ScPageAreaParam& r ) const
+bool ScPageAreaParam::operator==( const ScPageAreaParam& r ) const
{
- sal_Bool bEqual =
+ bool bEqual =
bPrintArea == r.bPrintArea
&& bRepeatRow == r.bRepeatRow
&& bRepeatCol == r.bRepeatCol;