summaryrefslogtreecommitdiff
path: root/svx/source/form/formdispatchinterceptor.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-04-14 16:15:22 +0200
committerNoel Grandin <noel@peralex.com>2014-04-15 09:02:33 +0200
commitbe88947bac607013c6b7a3c923a2eccd09e50942 (patch)
tree09cdc0803437ac8c76e12c60c6644c49cb1d5dd4 /svx/source/form/formdispatchinterceptor.cxx
parentcfddda092b0c105b5be7942a94cbbd88d55677f1 (diff)
svx: sal_Bool->bool
Change-Id: I464eba5fd5521c31868c6fc8a2137f17428d421e
Diffstat (limited to 'svx/source/form/formdispatchinterceptor.cxx')
-rw-r--r--svx/source/form/formdispatchinterceptor.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/form/formdispatchinterceptor.cxx b/svx/source/form/formdispatchinterceptor.cxx
index 28d4cd7f6d66..8544acc22dd5 100644
--- a/svx/source/form/formdispatchinterceptor.cxx
+++ b/svx/source/form/formdispatchinterceptor.cxx
@@ -57,7 +57,7 @@ namespace svxform
,m_aFallback()
,m_pMutex( _pMaster && _pMaster->getInterceptorMutex() ? _pMaster->getInterceptorMutex() : &m_aFallback )
,m_xIntercepted(_rxToIntercept)
- ,m_bListening(sal_False)
+ ,m_bListening(false)
,m_pMaster(_pMaster)
{
@@ -72,7 +72,7 @@ namespace svxform
if (xInterceptedComponent.is())
{
xInterceptedComponent->addEventListener(this);
- m_bListening = sal_True;
+ m_bListening = true;
}
}
::comphelper::decrement(m_refCount);
@@ -173,7 +173,7 @@ namespace svxform
// 88936 - 23.07.2001 - frank.schoenheit@sun.com
m_pMaster = NULL;
m_pMutex = &m_aFallback;
- m_bListening = sal_False;
+ m_bListening = false;
}