Hi Norbert,
Thanks for the patch, I pushed it.
--
Cedric
On Thu, 2010-09-30 at 02:09 -0500, nthiebaud@gmail.com wrote:
---
sw/inc/acmplwrd.hxx | 6 +++---
sw/source/ui/app/docsh2.cxx | 4 ++--
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/sw/inc/acmplwrd.hxx b/sw/inc/acmplwrd.hxx
index 94ab1f8..53f1f04 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 );
diff --git a/sw/source/ui/app/docsh2.cxx b/sw/source/ui/app/docsh2.cxx
index b0ae693..30fa699 100644
--- a/sw/source/ui/app/docsh2.cxx
+++ b/sw/source/ui/app/docsh2.cxx
@@ -639,10 +639,10 @@ void SwDocShell::Execute(SfxRequest& rReq)
SvxSwAutoFmtFlags* pAFlags = &SvxAutoCorrCfg::Get()->GetAutoCorrect()->GetSwFlags();
SwAutoCompleteWord& rACW = SwDoc::GetAutoCompleteWords();
- BOOL bOldLocked = rACW.IsLockWordLstLocked(),
+ bool bOldLocked = rACW.IsLockWordLstLocked(),
bOldAutoCmpltCollectWords = pAFlags->bAutoCmpltCollectWords;
- rACW.SetLockWordLstLocked( TRUE );
+ rACW.SetLockWordLstLocked( true );
SvStringsISortDtor aTmpLst;
aTmpLst.Insert( &rACW.GetWordList() );
--
Cédric Bosdonnat
LibreOffice hacker
http://documentfoundation.org
OOo Eclipse Integration developer
http://cedric.bosdonnat.free.fr
Context
Privacy Policy |
Impressum (Legal Info) |
Copyright information: Unless otherwise specified, all text and images
on this website are licensed under the
Creative Commons Attribution-Share Alike 3.0 License.
This does not include the source code of LibreOffice, which is
licensed under the Mozilla Public License (
MPLv2).
"LibreOffice" and "The Document Foundation" are
registered trademarks of their corresponding registered owners or are
in actual use as trademarks in one or more countries. Their respective
logos and icons are also subject to international copyright laws. Use
thereof is explained in our
trademark policy.