summaryrefslogtreecommitdiff
path: root/sc/source/core/inc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-09-22 02:19:36 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2013-10-01 01:48:06 +0200
commitd81286b78ff90cf4cde17c5000cd8eda6ea4a380 (patch)
treef23e21dc2e3d9d2b319e48ea70a3446cbe30fece /sc/source/core/inc
parentd2e1dd559f4009a83f3ce6cb6617dfced010be74 (diff)
sal_Bool to bool in bcaslot.[ch]xx
Change-Id: Ic38f5421da373a68eeee8fe7863450dd5025e312
Diffstat (limited to 'sc/source/core/inc')
-rw-r--r--sc/source/core/inc/bcaslot.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sc/source/core/inc/bcaslot.hxx b/sc/source/core/inc/bcaslot.hxx
index 53e13d62735c..ca11dd975096 100644
--- a/sc/source/core/inc/bcaslot.hxx
+++ b/sc/source/core/inc/bcaslot.hxx
@@ -39,7 +39,7 @@ private:
SvtBroadcaster aBroadcaster;
ScRange aRange;
sal_uLong nRefCount;
- sal_Bool bInUpdateChain;
+ bool bInUpdateChain;
public:
ScBroadcastArea( const ScRange& rRange )
@@ -57,8 +57,8 @@ public:
inline sal_uLong GetRef() { return nRefCount; }
inline ScBroadcastArea* GetUpdateChainNext() const { return pUpdateChainNext; }
inline void SetUpdateChainNext( ScBroadcastArea* p ) { pUpdateChainNext = p; }
- inline sal_Bool IsInUpdateChain() const { return bInUpdateChain; }
- inline void SetInUpdateChain( sal_Bool b ) { bInUpdateChain = b; }
+ inline bool IsInUpdateChain() const { return bInUpdateChain; }
+ inline void SetInUpdateChain( bool b ) { bInUpdateChain = b; }
/** Equalness of this or range. */
inline bool operator==( const ScBroadcastArea & rArea ) const;
@@ -139,7 +139,7 @@ private:
whether there would be an overflow when adding an area, setting the
proper state if so.
- @return sal_True if a HardRecalcState is effective and area is not to be
+ @return true if a HardRecalcState is effective and area is not to be
added.
*/
bool CheckHardRecalcStateCondition() const;
@@ -173,7 +173,7 @@ public:
as InsertListeningArea(), so use that instead.
@return
- sal_True if rpArea passed was NULL and ScBroadcastArea is newly
+ true if rpArea passed was NULL and ScBroadcastArea is newly
created.
*/
bool StartListeningArea( const ScRange& rRange,
@@ -189,9 +189,9 @@ public:
void EndListeningArea( const ScRange& rRange,
SvtListener* pListener,
ScBroadcastArea*& rpArea );
- sal_Bool AreaBroadcast( const ScHint& rHint );
- /// @return sal_True if at least one broadcast occurred.
- sal_Bool AreaBroadcastInRange( const ScRange& rRange,
+ bool AreaBroadcast( const ScHint& rHint );
+ /// @return true if at least one broadcast occurred.
+ bool AreaBroadcastInRange( const ScRange& rRange,
const ScHint& rHint );
void DelBroadcastAreasInRange( const ScRange& rRange );
void UpdateRemove( UpdateRefMode eUpdateRefMode,
@@ -281,9 +281,9 @@ public:
SvtListener* pListener );
void EndListeningArea( const ScRange& rRange,
SvtListener* pListener );
- sal_Bool AreaBroadcast( const ScHint& rHint ) const;
+ bool AreaBroadcast( const ScHint& rHint ) const;
// return: at least one broadcast occurred
- sal_Bool AreaBroadcastInRange( const ScRange& rRange, const ScHint& rHint ) const;
+ bool AreaBroadcastInRange( const ScRange& rRange, const ScHint& rHint ) const;
void DelBroadcastAreasInRange( const ScRange& rRange );
void UpdateBroadcastAreas( UpdateRefMode eUpdateRefMode,
const ScRange& rRange,