Kaydet (Commit) 2227bcc1 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix sal_Bool -> bool assignment

Change-Id: I2cd55fa3ecef70b29b940e682faf98c7f6718b3c
üst 5e70740d
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment