diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:18:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:25:48 +0200 |
commit | f2966da1111ec0c74177dcb643ecba951f79aa8c (patch) | |
tree | e154d935629e11b008fac3fd4f7e30379df0ce88 | |
parent | abe81a0b7b5014aefec1ede55cc6b7b947c47484 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: Ie9914a13b46de54897a031e40b6176455b7831fb
-rw-r--r-- | salhelper/source/timer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/salhelper/source/timer.cxx b/salhelper/source/timer.cxx index 4282c473f865..0ab0d3bda6a8 100644 --- a/salhelper/source/timer.cxx +++ b/salhelper/source/timer.cxx @@ -146,7 +146,7 @@ sal_Bool Timer::isTicking() const if (pManager) return pManager->lookupTimer(this); else - return sal_False; + return false; } @@ -169,7 +169,7 @@ sal_Bool Timer::expiresBefore(const Timer* pTimer) const } else { - return sal_False; + return false; } } |