diff options
author | Noel Grandin <noel@peralex.com> | 2014-01-17 14:34:15 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-01-20 13:13:51 +0200 |
commit | de139552bead429544e16f2c3bffd1fcbbc3c91b (patch) | |
tree | 3fe4c78a9dd9a82ffad02e69d90e598546458eb2 /sc | |
parent | f8e5ba4f514487ddc8fa1b42f6d536d00728ddf7 (diff) |
sal_Bool->bool
Change-Id: Id85765e1ae560364d8cf5e33b509473a362d63ed
Diffstat (limited to 'sc')
-rw-r--r-- | sc/inc/chart2uno.hxx | 4 | ||||
-rw-r--r-- | sc/source/ui/unoobj/chart2uno.cxx | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/chart2uno.hxx b/sc/inc/chart2uno.hxx index 4f54357985e9..d15a07036e43 100644 --- a/sc/inc/chart2uno.hxx +++ b/sc/inc/chart2uno.hxx @@ -184,7 +184,7 @@ private: ScDocument* m_pDocument; SfxItemPropertySet m_aPropSet; - sal_Bool m_bIncludeHiddenCells; + bool m_bIncludeHiddenCells; }; // DataSource @@ -428,7 +428,7 @@ private: // properties ::com::sun::star::chart2::data::DataSequenceRole m_aRole; - sal_Bool m_bIncludeHiddenCells; + bool m_bIncludeHiddenCells; // internals typedef boost::scoped_ptr<std::vector<ScTokenRef> > TokenListPtr; 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 ) |