am 7f226b4f: Merge "Fix an NPE on ICS factory rom."
* commit '7f226b4f9db15105b10fdc04249db433772e87b4': Fix an NPE on ICS factory rom.main
commit
4108bc2efe
|
@ -1649,8 +1649,10 @@ public final class InputLogic {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Add the suggestion list to the list of suggestions.
|
// Add the suggestion list to the list of suggestions.
|
||||||
textToCommit.setSpan(new SuggestionSpan(inputTransaction.mSettingsValues.mLocale,
|
textToCommit.setSpan(new SuggestionSpan(mLatinIME /* context */,
|
||||||
suggestions.toArray(new String[suggestions.size()]), 0 /* flags */),
|
inputTransaction.mSettingsValues.mLocale,
|
||||||
|
suggestions.toArray(new String[suggestions.size()]), 0 /* flags */,
|
||||||
|
null /* notificationTargetClass */),
|
||||||
0 /* start */, lastCharIndex /* end */, 0 /* flags */);
|
0 /* start */, lastCharIndex /* end */, 0 /* flags */);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue