Move lcl_getScriptClass into only caller

Change-Id: I4f02f40abb26e9e00a0035793d593d1e0914e332
This commit is contained in:
Tor Lillqvist
2017-06-29 16:46:38 +03:00
parent f44265e258
commit bae1367708

View File

@@ -8581,7 +8581,7 @@ static const UBlockScript scriptList[] = {
{UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B, UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT}, {UBLOCK_CJK_UNIFIED_IDEOGRAPHS_EXTENSION_B, UBLOCK_CJK_COMPATIBILITY_IDEOGRAPHS_SUPPLEMENT},
{UBLOCK_CJK_STROKES, UBLOCK_CJK_STROKES} {UBLOCK_CJK_STROKES, UBLOCK_CJK_STROKES}
}; };
bool SAL_CALL lcl_getScriptClass(sal_uInt32 currentChar) bool IsDBCS(sal_Unicode currentChar)
{ {
// for the locale of ja-JP, character U+0x005c and U+0x20ac should be ScriptType::Asian // for the locale of ja-JP, character U+0x005c and U+0x20ac should be ScriptType::Asian
if( (currentChar == 0x005c || currentChar == 0x20ac) && if( (currentChar == 0x005c || currentChar == 0x20ac) &&
@@ -8596,10 +8596,6 @@ bool SAL_CALL lcl_getScriptClass(sal_uInt32 currentChar)
bRet = (i < SAL_N_ELEMENTS(scriptList) && block >= scriptList[i].from); bRet = (i < SAL_N_ELEMENTS(scriptList) && block >= scriptList[i].from);
return bRet; return bRet;
} }
bool IsDBCS(sal_Unicode ch)
{
return lcl_getScriptClass(ch);
}
sal_Int32 getLengthB(const OUString &str) sal_Int32 getLengthB(const OUString &str)
{ {
if(str.isEmpty()) if(str.isEmpty())