summaryrefslogtreecommitdiff
path: root/linguistic/source/lngopt.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-04-20 17:17:53 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-04-20 17:25:44 +0200
commit99b05d1169646710c19c1c20953ed625cb967d9f (patch)
treef0e8b930e31f6eb237a0eafcbc00d93e41e67eef /linguistic/source/lngopt.cxx
parent0f1e0324312470340b3695c85385e51d1db21e67 (diff)
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: Idd106e7ab94a7377807872d7742263225b22da28
Diffstat (limited to 'linguistic/source/lngopt.cxx')
-rw-r--r--linguistic/source/lngopt.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/lngopt.cxx b/linguistic/source/lngopt.cxx
index 891164b5feaa..79bb649ffa61 100644
--- a/linguistic/source/lngopt.cxx
+++ b/linguistic/source/lngopt.cxx
@@ -241,7 +241,7 @@ void SAL_CALL LinguProps::setPropertyValue(
if (aOld != rValue && aConfig.SetProperty( pCur->nWID, rValue ))
{
PropertyChangeEvent aChgEvt( static_cast<XPropertySet *>(this), rPropertyName,
- sal_False, pCur->nWID, aOld, rValue );
+ false, pCur->nWID, aOld, rValue );
launchEvent( aChgEvt );
}
}
@@ -318,7 +318,7 @@ void SAL_CALL LinguProps::setFastPropertyValue( sal_Int32 nHandle, const Any& rV
if (aOld != rValue && aConfig.SetProperty( nHandle, rValue ))
{
PropertyChangeEvent aChgEvt( static_cast<XPropertySet *>(this),
- LinguOptions::GetName( nHandle ), sal_False, nHandle, aOld, rValue );
+ LinguOptions::GetName( nHandle ), false, nHandle, aOld, rValue );
launchEvent( aChgEvt );
}
}