Fix typo in code

It passed "make check" on Linux

Change-Id: I577f6ff01e8216ed85556ce4b3365fd924f75608
Reviewed-on: https://gerrit.libreoffice.org/65468
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
This commit is contained in:
Andrea Gelmini
2018-12-19 15:14:57 +00:00
committed by Julien Nabet
parent a9151763b6
commit 6c9effd0e5
3 changed files with 3 additions and 3 deletions

View File

@@ -78,7 +78,7 @@ halfwidthToFullwidthLikeJIS::transliterateImpl( const OUString& inStr, sal_Int32
const OUString& newStr = transliteration_OneToOne::transliterateImpl( inStr, startPos, nCount, offset, false);
// Composition: KA + voice-mark --> GA
return i18nutil::widthfolding::compose_ja_voiced_sound_marks ( newStr, 0, newStr.getLength(), offset, useOffset, WIDTHFOLDNIG_DONT_USE_COMBINED_VU );
return i18nutil::widthfolding::compose_ja_voiced_sound_marks ( newStr, 0, newStr.getLength(), offset, useOffset, WIDTHFOLDING_DONT_USE_COMBINED_VU );
}

View File

@@ -161,7 +161,7 @@ OUString widthfolding::compose_ja_voiced_sound_marks (const OUString& inStr, sal
bCompose = true;
// not to use combined KATAKANA LETTER VU
if ( previousChar == 0x30a6 && (nFlags & WIDTHFOLDNIG_DONT_USE_COMBINED_VU) )
if ( previousChar == 0x30a6 && (nFlags & WIDTHFOLDING_DONT_USE_COMBINED_VU) )
bCompose = false;
if( bCompose ){

View File

@@ -28,7 +28,7 @@ namespace i18nutil { class oneToOneMapping; }
namespace i18nutil {
#define WIDTHFOLDNIG_DONT_USE_COMBINED_VU 0x01
#define WIDTHFOLDING_DONT_USE_COMBINED_VU 0x01
class I18NUTIL_DLLPUBLIC widthfolding
{