diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-29 11:34:54 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-29 13:46:26 +0200 |
commit | 6f6f1680ec35b1616c2fc54e5ee8c3b85edf333b (patch) | |
tree | 5ec6cfdde2c0c848416155d1d8cab72a3254525e /i18nutil | |
parent | 8581d880f8aa8c2be15c875db291cebbb42841c7 (diff) |
loplugin:simplifybool in hwpfilter..lotuswordpro
Change-Id: Iedfd492c963eb89fe75fdd73cae630e7e1dae119
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95100
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18nutil')
-rw-r--r-- | i18nutil/source/utility/casefolding.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/i18nutil/source/utility/casefolding.cxx b/i18nutil/source/utility/casefolding.cxx index 57a6a23bc561..94cd9fab1ffc 100644 --- a/i18nutil/source/utility/casefolding.cxx +++ b/i18nutil/source/utility/casefolding.cxx @@ -135,7 +135,7 @@ Mapping casefolding::getValue(const sal_Unicode* str, sal_Int32 pos, sal_Int32 l static bool is_ja_voice_sound_mark(sal_Unicode& current, sal_Unicode next) { - if (!(next == 0x3099 || next == 0x309a)) + if (next != 0x3099 && next != 0x309a) return false; sal_Unicode c = widthfolding::getCompositionChar(current, next); if (c != 0) |