From ca6e816ed9c10521bda250a8898a0aaadcd28a05 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 10 Feb 2014 13:32:25 +0200 Subject: sal_Bool->bool Change-Id: I707536b04c2e27fcb7d6283baee3479fe0fa67cd --- sc/source/core/data/dptabsrc.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sc/source') diff --git a/sc/source/core/data/dptabsrc.cxx b/sc/source/core/data/dptabsrc.cxx index 947bc1bf3603..82a0c1dc9d61 100644 --- a/sc/source/core/data/dptabsrc.cxx +++ b/sc/source/core/data/dptabsrc.cxx @@ -255,7 +255,7 @@ void removeDim( long nRemove, std::vector& rDims ) } -sal_Bool ScDPSource::SubTotalAllowed(long nColumn) +bool ScDPSource::SubTotalAllowed(long nColumn) { //! cache this at ScDPResultData bool bAllowed = true; @@ -300,7 +300,7 @@ void ScDPSource::SetOrientation(long nColumn, sal_uInt16 nNew) } } -sal_Bool ScDPSource::IsDataLayoutDimension(long nDim) +bool ScDPSource::IsDataLayoutDimension(long nDim) { return nDim == pData->GetColumnCount(); } @@ -310,7 +310,7 @@ sal_uInt16 ScDPSource::GetDataLayoutOrientation() return GetOrientation(pData->GetColumnCount()); } -sal_Bool ScDPSource::IsDateDimension(long nDim) +bool ScDPSource::IsDateDimension(long nDim) { return pData->IsDateDimension(nDim); } -- cgit