diff options
author | Noel Grandin <noel@peralex.com> | 2014-02-10 13:58:08 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-02-10 14:44:56 +0200 |
commit | acf5f162662b94b149873e538f6bd8d69977f909 (patch) | |
tree | 16feea528a6d93da73b8fb6d5ce8bcd348916adf /sc/source | |
parent | 1c0f0a9f5b1772a8ac43230de79e39c65f0663df (diff) |
sal_Bool->bool
Change-Id: Iadbdb3b96d5e546e407e80f1ccc65e5db5f84f4e
Diffstat (limited to 'sc/source')
-rw-r--r-- | sc/source/core/data/dpgroup.cxx | 4 | ||||
-rw-r--r-- | sc/source/core/data/dptabdat.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/core/data/dpgroup.cxx b/sc/source/core/data/dpgroup.cxx index df4c0dfb95a3..71f80065294b 100644 --- a/sc/source/core/data/dpgroup.cxx +++ b/sc/source/core/data/dpgroup.cxx @@ -920,13 +920,13 @@ void ScDPGroupTableData::FillGroupValues(vector<SCROW>& rItems, const vector<lon } } -sal_Bool ScDPGroupTableData::IsBaseForGroup(long nDim) const +bool ScDPGroupTableData::IsBaseForGroup(long nDim) const { for ( ScDPGroupDimensionVec::const_iterator aIter(aGroups.begin()); aIter != aGroups.end(); ++aIter ) { const ScDPGroupDimension& rDim = *aIter; if ( rDim.GetSourceDim() == nDim ) - return sal_True; + return true; } return false; diff --git a/sc/source/core/data/dptabdat.cxx b/sc/source/core/data/dptabdat.cxx index fdd5b5ab7de8..a35a02115b11 100644 --- a/sc/source/core/data/dptabdat.cxx +++ b/sc/source/core/data/dptabdat.cxx @@ -120,7 +120,7 @@ sal_uLong ScDPTableData::GetNumberFormat(long) return 0; // default format } -sal_Bool ScDPTableData::IsBaseForGroup(long) const +bool ScDPTableData::IsBaseForGroup(long) const { return false; // always false } |