From 7dbc196e1de895959fe3a2b9c4cdc89069f263e9 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Thu, 25 Aug 2011 11:33:20 +0200 Subject: sal_Bool -> bool in ScTable --- sc/source/ui/docshell/docfunc.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sc/source/ui/docshell/docfunc.cxx') diff --git a/sc/source/ui/docshell/docfunc.cxx b/sc/source/ui/docshell/docfunc.cxx index 7fd656b41bc6..64c6cfcc5828 100644 --- a/sc/source/ui/docshell/docfunc.cxx +++ b/sc/source/ui/docshell/docfunc.cxx @@ -1228,10 +1228,10 @@ sal_Bool ScDocFunc::ApplyAttributes( const ScMarkData& rMark, const ScPatternAtt if ( bRecord && !pDoc->IsUndoEnabled() ) bRecord = false; - sal_Bool bImportingXML = pDoc->IsImportingXML(); + bool bImportingXML = pDoc->IsImportingXML(); // Cell formats can still be set if the range isn't editable only because of matrix formulas. // #i62483# When loading XML, the check can be skipped altogether. - sal_Bool bOnlyNotBecauseOfMatrix; + bool bOnlyNotBecauseOfMatrix; if ( !bImportingXML && !pDoc->IsSelectionEditable( rMark, &bOnlyNotBecauseOfMatrix ) && !bOnlyNotBecauseOfMatrix ) { @@ -1291,10 +1291,10 @@ sal_Bool ScDocFunc::ApplyStyle( const ScMarkData& rMark, const String& rStyleNam if ( bRecord && !pDoc->IsUndoEnabled() ) bRecord = false; - sal_Bool bImportingXML = pDoc->IsImportingXML(); + bool bImportingXML = pDoc->IsImportingXML(); // Cell formats can still be set if the range isn't editable only because of matrix formulas. // #i62483# When loading XML, the check can be skipped altogether. - sal_Bool bOnlyNotBecauseOfMatrix; + bool bOnlyNotBecauseOfMatrix; if ( !bImportingXML && !pDoc->IsSelectionEditable( rMark, &bOnlyNotBecauseOfMatrix ) && !bOnlyNotBecauseOfMatrix ) { @@ -2070,7 +2070,7 @@ sal_Bool ScDocFunc::DeleteCells( const ScRange& rRange, const ScMarkData* pTabMa rDocShell.UpdatePaintExt( nExtFlags, nStartCol, nStartRow, *itr, nEndCol, nEndRow, *itr ); } - sal_Bool bUndoOutline = false; + bool bUndoOutline = false; switch (eCmd) { case DEL_CELLSUP: -- cgit