Merge "Fix arguments order of KeyboardId constructor"

main
Tadashi G. Takaoka 2011-05-24 20:27:56 -07:00 committed by Android (Google) Code Review
commit ee80a77ebf
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ public class SuggestTestsBase extends AndroidTestCase {
final int displayWidth = getContext().getResources().getDisplayMetrics().widthPixels; final int displayWidth = getContext().getResources().getDisplayMetrics().widthPixels;
return new KeyboardId(locale.toString() + " keyboard", return new KeyboardId(locale.toString() + " keyboard",
com.android.inputmethod.latin.R.xml.kbd_qwerty, KeyboardView.COLOR_SCHEME_WHITE, com.android.inputmethod.latin.R.xml.kbd_qwerty, KeyboardView.COLOR_SCHEME_WHITE,
locale, displayWidth, Configuration.ORIENTATION_LANDSCAPE, KeyboardId.MODE_TEXT, locale, Configuration.ORIENTATION_LANDSCAPE, displayWidth, KeyboardId.MODE_TEXT,
new EditorInfo(), false, false, false, false); new EditorInfo(), false, false, false, false);
} }