summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-01-17 14:34:15 +0200
committerNoel Grandin <noel@peralex.com>2014-01-20 13:13:51 +0200
commitde139552bead429544e16f2c3bffd1fcbbc3c91b (patch)
tree3fe4c78a9dd9a82ffad02e69d90e598546458eb2 /sc/source
parentf8e5ba4f514487ddc8fa1b42f6d536d00728ddf7 (diff)
sal_Bool->bool
Change-Id: Id85765e1ae560364d8cf5e33b509473a362d63ed
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/unoobj/chart2uno.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/unoobj/chart2uno.cxx b/sc/source/ui/unoobj/chart2uno.cxx
index 53e6fc14d274..40664158cfb3 100644
--- a/sc/source/ui/unoobj/chart2uno.cxx
+++ b/sc/source/ui/unoobj/chart2uno.cxx
@@ -1008,7 +1008,7 @@ void lcl_convertTokensToString(OUString& rStr, const vector<ScTokenRef>& rTokens
ScChart2DataProvider::ScChart2DataProvider( ScDocument* pDoc )
: m_pDocument( pDoc)
, m_aPropSet(lcl_GetDataProviderPropertyMap())
- , m_bIncludeHiddenCells( sal_True)
+ , m_bIncludeHiddenCells( true)
{
if ( m_pDocument )
m_pDocument->AddUnoObject( *this);
@@ -3465,7 +3465,7 @@ void SAL_CALL ScChart2DataSequence::setPropertyValue(
}
else if ( rPropertyName == SC_UNONAME_INCLUDEHIDDENCELLS )
{
- sal_Bool bOldValue = m_bIncludeHiddenCells;
+ bool bOldValue = m_bIncludeHiddenCells;
if ( !(rValue >>= m_bIncludeHiddenCells))
throw lang::IllegalArgumentException();
if( bOldValue != m_bIncludeHiddenCells )