loplugin:salbool: Automatic rewrite of sal_False/True

Change-Id: Ie9914a13b46de54897a031e40b6176455b7831fb
This commit is contained in:
Stephan Bergmann
2016-04-20 17:18:58 +02:00
parent abe81a0b7b
commit f2966da111

View File

@@ -146,7 +146,7 @@ sal_Bool Timer::isTicking() const
if (pManager) if (pManager)
return pManager->lookupTimer(this); return pManager->lookupTimer(this);
else else
return sal_False; return false;
} }
@@ -169,7 +169,7 @@ sal_Bool Timer::expiresBefore(const Timer* pTimer) const
} }
else else
{ {
return sal_False; return false;
} }
} }