summaryrefslogtreecommitdiff
path: root/lingucomponent/source/hyphenator/altlinuxhyph
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2012-09-25 15:37:34 +0200
committerMichael Stahl <mstahl@redhat.com>2012-10-04 21:29:32 +0200
commitb377ccca01070ce096fdf13aafc34020d5bc80ca (patch)
treeeb8e14d711cde6db90ab7b419a33a8b2882686c9 /lingucomponent/source/hyphenator/altlinuxhyph
parentdea967349cea054b20fdfb22d6c59eee08f3faeb (diff)
sal_Bool->bool in lingucomponent
Change-Id: Ic3b55606faf60648d3a680b7a60c331047151ab5
Diffstat (limited to 'lingucomponent/source/hyphenator/altlinuxhyph')
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx4
-rw-r--r--lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx
index b3106a054163..f55505285575 100644
--- a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx
+++ b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.cxx
@@ -84,7 +84,7 @@ using ::rtl::OUString;
Hyphenator::Hyphenator() :
aEvtListeners ( GetLinguMutex() )
{
- bDisposing = sal_False;
+ bDisposing = false;
pPropHelper = NULL;
aDicts = NULL;
numdict = 0;
@@ -860,7 +860,7 @@ void SAL_CALL Hyphenator::dispose()
if (!bDisposing)
{
- bDisposing = sal_True;
+ bDisposing = true;
EventObject aEvtObj( (XHyphenator *) this );
aEvtListeners.disposeAndClear( aEvtObj );
if (pPropHelper)
diff --git a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx
index 933155b3ac02..504c3707347e 100644
--- a/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx
+++ b/lingucomponent/source/hyphenator/altlinuxhyph/hyphen/hyphenimp.hxx
@@ -88,8 +88,8 @@ class Hyphenator :
::cppu::OInterfaceContainerHelper aEvtListeners;
Reference< XMultiServiceFactory > rSMgr;
- linguistic::PropertyHelper_Hyphenation* pPropHelper;
- sal_Bool bDisposing;
+ linguistic::PropertyHelper_Hyphenation* pPropHelper;
+ bool bDisposing;
// disallow copy-constructor and assignment-operator for now
Hyphenator(const Hyphenator &);