diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-24 04:19:32 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-03-24 05:14:18 +0100 |
commit | d3d23f889a74ace0e4e71526df7aca18b1acaa03 (patch) | |
tree | 905f65757024158e87f1b2483a418e699b93465e /sc | |
parent | bfa20cd32c825cfe8dbdb93399ed99544d8c8647 (diff) |
sal_Bool -> bool in address.cxx
Change-Id: I77c688cb11438204acd37113cffc223ba0c08f0c
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/core/tool/address.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/tool/address.cxx b/sc/source/core/tool/address.cxx index abae2c31f8ef..9a8fe8f5e22a 100644 --- a/sc/source/core/tool/address.cxx +++ b/sc/source/core/tool/address.cxx @@ -270,7 +270,7 @@ lcl_XL_ParseSheetRef( const sal_Unicode* start, } else { - bool only_digits = sal_True; + bool only_digits = true; /* * Valid: Normal!a1 @@ -1844,7 +1844,7 @@ void ScRange::Format( String& r, sal_uInt16 nFlags, const ScDocument* pDoc, switch( rDetails.eConv ) { default : case formula::FormulaGrammar::CONV_OOO: { - sal_Bool bOneTab = (aStart.Tab() == aEnd.Tab()); + bool bOneTab = (aStart.Tab() == aEnd.Tab()); if ( !bOneTab ) nFlags |= SCA_TAB_3D; aStart.Format( r, nFlags, pDoc, rDetails ); @@ -1948,7 +1948,7 @@ bool ScAddress::Move( SCsCOL dx, SCsROW dy, SCsTAB dz, ScDocument* pDoc ) dx = Col() + dx; dy = Row() + dy; dz = Tab() + dz; - sal_Bool bValid = sal_True; + bool bValid = true; if( dx < 0 ) dx = 0, bValid = false; else if( dx > MAXCOL ) |