summaryrefslogtreecommitdiff
path: root/sc/source/ui/unoobj/datauno.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-02-14 15:21:03 +0200
committerNoel Grandin <noel@peralex.com>2014-02-18 10:07:54 +0200
commita21ecc1611dce99a70dc6e9ee219f743c75cadc5 (patch)
treebc4f72b5c0736b6b235fb1f54e750453e459df6c /sc/source/ui/unoobj/datauno.cxx
parent9d9de0ce0cd3717def37c7e520e14195bc6d1782 (diff)
sal_Bool->bool
Change-Id: I8a94c5f44645d3ef03f231fe7b38c7e5637f8c09
Diffstat (limited to 'sc/source/ui/unoobj/datauno.cxx')
-rw-r--r--sc/source/ui/unoobj/datauno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/datauno.cxx b/sc/source/ui/unoobj/datauno.cxx
index 8ab87cab3f3b..18a93361cc72 100644
--- a/sc/source/ui/unoobj/datauno.cxx
+++ b/sc/source/ui/unoobj/datauno.cxx
@@ -2295,7 +2295,7 @@ void SAL_CALL ScDatabaseRangesObj::addNewByName( const OUString& aName,
OUString aString(aName);
ScRange aNameRange( (SCCOL)aRange.StartColumn, (SCROW)aRange.StartRow, aRange.Sheet,
(SCCOL)aRange.EndColumn, (SCROW)aRange.EndRow, aRange.Sheet );
- bDone = aFunc.AddDBRange( aString, aNameRange, sal_True );
+ bDone = aFunc.AddDBRange( aString, aNameRange, true );
}
if (!bDone)
throw uno::RuntimeException(); // no other exceptions specified
@@ -2466,7 +2466,7 @@ void ScUnnamedDatabaseRangesObj::setByTable( const table::CellRangeAddress& aRan
OUString aString(STR_DB_LOCAL_NONAME);
ScRange aUnnamedRange( (SCCOL)aRange.StartColumn, (SCROW)aRange.StartRow, aRange.Sheet,
(SCCOL)aRange.EndColumn, (SCROW)aRange.EndRow, aRange.Sheet );
- bDone = aFunc.AddDBRange( aString, aUnnamedRange, sal_True );
+ bDone = aFunc.AddDBRange( aString, aUnnamedRange, true );
}
if (!bDone)
throw uno::RuntimeException(); // no other exceptions specified