Fix a bug in InputMethodSubtype constructor

bug: 5249480

Change-Id: I707e45cc0606dae7824c478ab586fc24d3f417f8
This commit is contained in:
Ken Wakasa
2011-09-09 20:14:22 +09:00
parent 94d86daeb5
commit 8b83a72976

View File

@@ -63,7 +63,7 @@ public final class InputMethodSubtype implements Parcelable {
*/
public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue,
boolean isAuxiliary) {
this(nameId, iconId, locale, mode, extraValue, false, false);
this(nameId, iconId, locale, mode, extraValue, isAuxiliary, false);
}
/**