diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:20:55 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-20 17:27:29 +0200 |
commit | 4f8756f075e7777f4a681eb80dc002083129b5a5 (patch) | |
tree | 93ca8f8ad91cc32250f2922c92ac0b57c3397600 /include/unotools | |
parent | db67f6f40839814c148f1a414e3c3bde188111f9 (diff) |
loplugin:salbool: Automatic rewrite of sal_False/True
Change-Id: I57c1bd476183c941a70cc0c60fd4e42bbe95ccb2
Diffstat (limited to 'include/unotools')
-rw-r--r-- | include/unotools/digitgroupingiterator.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/unotools/digitgroupingiterator.hxx b/include/unotools/digitgroupingiterator.hxx index c6eaf1cafb99..542925298d6c 100644 --- a/include/unotools/digitgroupingiterator.hxx +++ b/include/unotools/digitgroupingiterator.hxx @@ -177,11 +177,11 @@ public: { if (j == aIterator.getPos()) { - pArr[nIntegerDigits] = sal_True; + pArr[nIntegerDigits] = true; aIterator.advance(); } else - pArr[nIntegerDigits] = sal_False; + pArr[nIntegerDigits] = false; } return aSeq; } |