Change the first character check in bigram dictionary to be case insensitive.
Bug: 6188977 Change-Id: I121c1abf245c7f8734730810c07d3351b1ec581a
This commit is contained in:
parent
fce9ca4202
commit
aeda8a7798
1 changed files with 2 additions and 1 deletions
|
@ -151,8 +151,9 @@ bool BigramDictionary::checkFirstCharacter(unsigned short *word) {
|
|||
|
||||
int *inputCodes = mInputCodes;
|
||||
int maxAlt = MAX_ALTERNATIVES;
|
||||
const unsigned short firstBaseChar = toBaseLowerCase(*word);
|
||||
while (maxAlt > 0) {
|
||||
if ((unsigned int) *inputCodes == (unsigned int) *word) {
|
||||
if (toBaseLowerCase(*inputCodes) == firstBaseChar) {
|
||||
return true;
|
||||
}
|
||||
inputCodes++;
|
||||
|
|
Loading…
Reference in a new issue