summaryrefslogtreecommitdiff
path: root/sw/inc/calbck.hxx
diff options
context:
space:
mode:
authorMathias Bauer <mba@openoffice.org>2011-02-09 19:07:37 +0100
committerMathias Bauer <mba@openoffice.org>2011-02-09 19:07:37 +0100
commit19dae9ecb3e56a31c1910ceb9897af599c377573 (patch)
treeb533dd99c216b428828c7f0f6768e5fd20680e06 /sw/inc/calbck.hxx
parent48dcf9298221f5d741896dd7674bbebeb1c6a9da (diff)
CWS swlayoutrefactoring: fixes for compilation on unxlngxi after resync
Diffstat (limited to 'sw/inc/calbck.hxx')
-rw-r--r--sw/inc/calbck.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sw/inc/calbck.hxx b/sw/inc/calbck.hxx
index 326415a706..27aaaca7f4 100644
--- a/sw/inc/calbck.hxx
+++ b/sw/inc/calbck.hxx
@@ -133,11 +133,11 @@ class SW_DLLPUBLIC SwModify: public SwClient
// friend class SwClientIter;
SwClient* pRoot; // the start of the linked list of clients
- BOOL bModifyLocked : 1; // don't broadcast changes now
- BOOL bLockClientList : 1; // may be set when this instance notifies its clients
- BOOL bInDocDTOR : 1; // workaround for problems when a lot of objects are destroyed
- BOOL bInCache : 1;
- BOOL bInSwFntCache : 1;
+ sal_Bool bModifyLocked : 1; // don't broadcast changes now
+ sal_Bool bLockClientList : 1; // may be set when this instance notifies its clients
+ sal_Bool bInDocDTOR : 1; // workaround for problems when a lot of objects are destroyed
+ sal_Bool bInCache : 1;
+ sal_Bool bInSwFntCache : 1;
// mba: IMHO this method should be pure virtual
virtual void Modify( const SfxPoolItem* pOld, const SfxPoolItem *pNew);
@@ -169,8 +169,8 @@ public:
void LockModify() { bModifyLocked = sal_True; }
void UnlockModify() { bModifyLocked = sal_False; }
- void SetInCache( BOOL bNew ) { bInCache = bNew; }
- void SetInSwFntCache( BOOL bNew ) { bInSwFntCache = bNew; }
+ void SetInCache( sal_Bool bNew ) { bInCache = bNew; }
+ void SetInSwFntCache( sal_Bool bNew ) { bInSwFntCache = bNew; }
void SetInDocDTOR() { bInDocDTOR = sal_True; }
sal_Bool IsModifyLocked() const { return bModifyLocked; }
sal_Bool IsInDocDTOR() const { return bInDocDTOR; }