am 7f226b4f: Merge "Fix an NPE on ICS factory rom."

* commit '7f226b4f9db15105b10fdc04249db433772e87b4':
  Fix an NPE on ICS factory rom.
main
Jean Chalard 2014-10-01 10:21:13 +00:00 committed by Android Git Automerger
commit 4108bc2efe
1 changed files with 4 additions and 2 deletions

View File

@ -1649,8 +1649,10 @@ public final class InputLogic {
}
}
// Add the suggestion list to the list of suggestions.
textToCommit.setSpan(new SuggestionSpan(inputTransaction.mSettingsValues.mLocale,
suggestions.toArray(new String[suggestions.size()]), 0 /* flags */),
textToCommit.setSpan(new SuggestionSpan(mLatinIME /* context */,
inputTransaction.mSettingsValues.mLocale,
suggestions.toArray(new String[suggestions.size()]), 0 /* flags */,
null /* notificationTargetClass */),
0 /* start */, lastCharIndex /* end */, 0 /* flags */);
}