summaryrefslogtreecommitdiff
path: root/sc/source/core/data/pagepar.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/core/data/pagepar.cxx')
-rw-r--r--sc/source/core/data/pagepar.cxx18
1 files changed, 9 insertions, 9 deletions
diff --git a/sc/source/core/data/pagepar.cxx b/sc/source/core/data/pagepar.cxx
index 03ca4060d49b..92c1d1f20e14 100644
--- a/sc/source/core/data/pagepar.cxx
+++ b/sc/source/core/data/pagepar.cxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -61,8 +61,8 @@ void ScPageTableParam::Reset()
bCellContent = TRUE;
bNotes=bGrid=bHeaders=bDrawings=
bLeftRight=bScaleAll=bScaleTo=bScalePageNum=
- bFormulas=bNullVals=bSkipEmpty = FALSE;
- bTopDown=bScaleNone=bCharts=bObjects = TRUE;
+ bFormulas=bNullVals=bSkipEmpty = FALSE;
+ bTopDown=bScaleNone=bCharts=bObjects = TRUE;
nScaleAll = 100;
nScalePageNum = nScaleWidth = nScaleHeight = 0;
nFirstPageNo = 1;
@@ -105,19 +105,19 @@ void ScPageAreaParam::Reset()
BOOL ScPageAreaParam::operator==( const ScPageAreaParam& r ) const
{
BOOL bEqual =
- bPrintArea == r.bPrintArea
- && bRepeatRow == r.bRepeatRow
- && bRepeatCol == r.bRepeatCol;
+ bPrintArea == r.bPrintArea
+ && bRepeatRow == r.bRepeatRow
+ && bRepeatCol == r.bRepeatCol;
if ( bEqual )
if ( bPrintArea )
- bEqual = bEqual && ( aPrintArea == r.aPrintArea );
+ bEqual = bEqual && ( aPrintArea == r.aPrintArea );
if ( bEqual )
if ( bRepeatRow )
- bEqual = bEqual && ( aRepeatRow == r.aRepeatRow );
+ bEqual = bEqual && ( aRepeatRow == r.aRepeatRow );
if ( bEqual )
if ( bRepeatCol )
- bEqual = bEqual && ( aRepeatCol == r.aRepeatCol );
+ bEqual = bEqual && ( aRepeatCol == r.aRepeatCol );
return bEqual;
}