Kaydet (Commit) 3972f34a authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Typo "stirng" -> "string"

Change-Id: I08c98ed0f81894444a75adcf7da3a952c7f418cf
üst 970813b0
......@@ -126,7 +126,7 @@ IndexEntrySupplier_asian::getIndexCharacter( const OUString& rIndexEntry,
}
}
// using alphanumeric index for non-define stirng
// using alphanumeric index for non-define string
return OUString(&idxStr[(ch & 0xFFFFFF00) ? 0 : ch], 1);
}
......
......@@ -32,7 +32,7 @@ OUString SAL_CALL IndexEntrySupplier_ja_phonetic::getIndexCharacter( const OUStr
sal_Unicode ch=rIndexEntry.toChar();
sal_uInt16 first = idx[ ch >> 8 ];
if (first == 0xFFFF) {
// using alphanumeric index for non-define stirng
// using alphanumeric index for non-define string
return OUString(&idxStr[(ch & 0xFF00) ? 0 : ch], 1);
} else {
const sal_Unicode *idx2 = strstr(implementationName, "syllable") ? syllable : consonant;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment