summaryrefslogtreecommitdiff
path: root/sw/inc/acmplwrd.hxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-09-30 10:06:39 +0200
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2010-09-30 10:09:05 +0200
commit41f99c6232f0b782817e9fb3e8dea9414c76d52b (patch)
treec14c8c247283f83cf6e6062bf03de074275b3dd4 /sw/inc/acmplwrd.hxx
parent9f8f1b8d6f5d683948f64af4bf94c95934f799e7 (diff)
Convert BOOL to bool in SwAutoCompleteWord
Diffstat (limited to 'sw/inc/acmplwrd.hxx')
-rw-r--r--sw/inc/acmplwrd.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/acmplwrd.hxx b/sw/inc/acmplwrd.hxx
index 8dda01f28493..6b65dc339397 100644
--- a/sw/inc/acmplwrd.hxx
+++ b/sw/inc/acmplwrd.hxx
@@ -44,7 +44,7 @@ class SwAutoCompleteWord
SwAutoCompleteWord_Impl* pImpl;
USHORT nMaxCount, nMinWrdLen;
- BOOL bLockWordLst;
+ bool bLockWordLst;
void DocumentDying(const SwDoc& rDoc);
public:
@@ -57,8 +57,8 @@ public:
const String& operator[]( USHORT n ) const { return *aWordLst[ n ]; }
- BOOL IsLockWordLstLocked() const { return bLockWordLst; }
- void SetLockWordLstLocked( BOOL bFlag ) { bLockWordLst = bFlag; }
+ bool IsLockWordLstLocked() const { return bLockWordLst; }
+ void SetLockWordLstLocked( bool bFlag ) { bLockWordLst = bFlag; }
void SetMaxCount( USHORT n );