diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-08 13:17:50 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-02-09 17:07:29 +0100 |
commit | de8c193833a7c60826015ecaed13d9fb3d1e0aba (patch) | |
tree | d057f3c759ab8ccd917038f6ef30b22b8a5d293b /i18nutil | |
parent | cfadf87cf51e0681d5fc4059a973ed1630a8203f (diff) |
loplugin:indentation in helpcompiler..io
Change-Id: Ia3f05662cc9542feeac3096d29e9dec6d1858620
Reviewed-on: https://gerrit.libreoffice.org/67558
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18nutil')
-rw-r--r-- | i18nutil/source/utility/widthfolding.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/i18nutil/source/utility/widthfolding.cxx b/i18nutil/source/utility/widthfolding.cxx index 5b6b33b1426e..6f572080689c 100644 --- a/i18nutil/source/utility/widthfolding.cxx +++ b/i18nutil/source/utility/widthfolding.cxx @@ -70,13 +70,13 @@ OUString widthfolding::decompose_ja_voiced_sound_marks (const OUString& inStr, s int i = int(c - 0x3040); sal_Unicode first = decomposition_table[i].decomposited_character_1; if (first != 0x0000) { - *dst ++ = first; - *dst ++ = decomposition_table[i].decomposited_character_2; // second + *dst ++ = first; + *dst ++ = decomposition_table[i].decomposited_character_2; // second if (useOffset) { *p ++ = position; *p ++ = position ++; } - continue; + continue; } } *dst ++ = c; @@ -113,7 +113,7 @@ OUString widthfolding::compose_ja_voiced_sound_marks (const OUString& inStr, sal sal_Unicode* dst = newStr->buffer; // This conversion algorithm requires at least one character. - if (nCount > 0) { + if (nCount > 0) { // .. .. KA VOICE .. .. // ^ ^ @@ -169,10 +169,10 @@ OUString widthfolding::compose_ja_voiced_sound_marks (const OUString& inStr, sal position ++; *p ++ = position ++; } - *dst ++ = composition_table[i][j]; - previousChar = *src ++; - nCount --; - continue; + *dst ++ = composition_table[i][j]; + previousChar = *src ++; + nCount --; + continue; } } if (useOffset) |