summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/nameuno.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-23 11:08:48 +0200
committerNoel Grandin <noel@peralex.com>2014-04-23 11:11:51 +0200
commit6dda3d45c902d64323a085ea1604a993521f313d (patch)
tree9b964839510ac36762733bd99951539040f8ffc0 /sc/source/ui/unoobj/nameuno.cxx
parente32da7783686f088fa83cdae209bcf1c81d82f1e (diff)
sc: sal_Bool->bool
Change-Id: I70aad0b38979f45a313b8ac36890fb6c64d11bb0
Diffstat (limited to 'sc/source/ui/unoobj/nameuno.cxx')
-rw-r--r--sc/source/ui/unoobj/nameuno.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/source/ui/unoobj/nameuno.cxx b/sc/source/ui/unoobj/nameuno.cxx
index 9386c11292be..9a8c52e7ea0c 100644
--- a/sc/source/ui/unoobj/nameuno.cxx
+++ b/sc/source/ui/unoobj/nameuno.cxx
@@ -512,7 +512,7 @@ void SAL_CALL ScNamedRangesObj::addNewByName( const OUString& aName,
if ( nUnoType & sheet::NamedRangeFlag::COLUMN_HEADER ) nNewType |= RT_COLHEADER;
if ( nUnoType & sheet::NamedRangeFlag::ROW_HEADER ) nNewType |= RT_ROWHEADER;
- sal_Bool bDone = false;
+ bool bDone = false;
if (pDocShell)
{
ScDocument* pDoc = pDocShell->GetDocument();
@@ -546,10 +546,10 @@ void SAL_CALL ScNamedRangesObj::addNewFromTitles( const table::CellRangeAddress&
SolarMutexGuard aGuard;
//! this cannot be an enum, because multiple bits can be set !!!
- sal_Bool bTop = ( aBorder == sheet::Border_TOP );
- sal_Bool bLeft = ( aBorder == sheet::Border_LEFT );
- sal_Bool bBottom = ( aBorder == sheet::Border_BOTTOM );
- sal_Bool bRight = ( aBorder == sheet::Border_RIGHT );
+ bool bTop = ( aBorder == sheet::Border_TOP );
+ bool bLeft = ( aBorder == sheet::Border_LEFT );
+ bool bBottom = ( aBorder == sheet::Border_BOTTOM );
+ bool bRight = ( aBorder == sheet::Border_RIGHT );
ScRange aRange;
ScUnoConversion::FillScRange( aRange, aSource );
@@ -1131,7 +1131,7 @@ void SAL_CALL ScLabelRangesObj::removeByIndex( sal_Int32 nIndex )
throw(uno::RuntimeException, std::exception)
{
SolarMutexGuard aGuard;
- sal_Bool bDone = false;
+ bool bDone = false;
if (pDocShell)
{
ScDocument* pDoc = pDocShell->GetDocument();
@@ -1155,7 +1155,7 @@ void SAL_CALL ScLabelRangesObj::removeByIndex( sal_Int32 nIndex )
pDoc->CompileColRowNameFormula();
pDocShell->PostPaint( 0,0,0, MAXCOL,MAXROW,MAXTAB, PAINT_GRID );
pDocShell->SetDocumentModified();
- bDone = sal_True;
+ bDone = true;
//! Undo ?!?! (here and from dialog)
}