diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-10 13:53:24 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-10 14:44:56 +0200 |
commit | 1c0f0a9f5b1772a8ac43230de79e39c65f0663df (patch) | |
tree | 51d3b49550afe18bcea4ac42d6958d796467ee68 /sc/source/core | |
parent | 6be783933d039708844e9ee9eb2742a1f0c8e367 (diff) |
sal_Bool->bool
Change-Id: Id5a104fb70745e43da056c82ae44841c8b54abb2
Diffstat (limited to 'sc/source/core')
-rw-r--r-- | sc/source/core/data/dpgroup.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/dpsdbtab.cxx | 2 | ||||
-rw-r--r-- | sc/source/core/data/dpshttab.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/data/dpgroup.cxx b/sc/source/core/data/dpgroup.cxx index 3fe464589339..df4c0dfb95a3 100644 --- a/sc/source/core/data/dpgroup.cxx +++ b/sc/source/core/data/dpgroup.cxx @@ -610,7 +610,7 @@ bool ScDPGroupTableData::getIsDataLayoutDimension(long nColumn) return ( nColumn == sal::static_int_cast<long>( nSourceCount + aGroups.size() ) ); // data layout dimension? } -sal_Bool ScDPGroupTableData::IsDateDimension(long nDim) +bool ScDPGroupTableData::IsDateDimension(long nDim) { if ( nDim >= nSourceCount ) { diff --git a/sc/source/core/data/dpsdbtab.cxx b/sc/source/core/data/dpsdbtab.cxx index a671926f5e8c..3a205be2572d 100644 --- a/sc/source/core/data/dpsdbtab.cxx +++ b/sc/source/core/data/dpsdbtab.cxx @@ -104,7 +104,7 @@ bool ScDatabaseDPData::getIsDataLayoutDimension(long nColumn) return ( nColumn == GetCacheTable().getColSize()); } -sal_Bool ScDatabaseDPData::IsDateDimension(long /* nDim */) +bool ScDatabaseDPData::IsDateDimension(long /* nDim */) { //! later... return false; diff --git a/sc/source/core/data/dpshttab.cxx b/sc/source/core/data/dpshttab.cxx index ec979157d8e3..57b21032fc21 100644 --- a/sc/source/core/data/dpshttab.cxx +++ b/sc/source/core/data/dpshttab.cxx @@ -101,7 +101,7 @@ OUString ScSheetDPData::getDimensionName(long nColumn) } } -sal_Bool ScSheetDPData::IsDateDimension(long nDim) +bool ScSheetDPData::IsDateDimension(long nDim) { CreateCacheTable(); long nColCount = aCacheTable.getColSize(); |