diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 11:04:32 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-04-28 13:44:13 +0200 |
commit | 2227bcc1f915aef367c4252bc1d1f5b7030dac87 (patch) | |
tree | 6851b542c50237e714efb9ae61e7c35205fc1909 /linguistic/source/dicimp.cxx | |
parent | 5e70740d93b9fa327ca73d3d15512ade0c5611d6 (diff) |
Fix sal_Bool -> bool assignment
Change-Id: I2cd55fa3ecef70b29b940e682faf98c7f6718b3c
Diffstat (limited to 'linguistic/source/dicimp.cxx')
-rw-r--r-- | linguistic/source/dicimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx index 8f42eae393e2..9f109a310bf0 100644 --- a/linguistic/source/dicimp.cxx +++ b/linguistic/source/dicimp.cxx @@ -770,7 +770,7 @@ void SAL_CALL DictionaryNeo::setActive( sal_Bool bActivate ) if (bIsActive != bool(bActivate)) { - bIsActive = bActivate != 0; + bIsActive = bActivate; sal_Int16 nEvent = bIsActive ? DictionaryEventFlags::ACTIVATE_DIC : DictionaryEventFlags::DEACTIVATE_DIC; |