Fix arguments order of KeyboardId constructor

Change-Id: I0b958f10e2146a3a70c9c0643f62ad48ae472631
This commit is contained in:
Tadashi G. Takaoka 2011-05-25 11:40:53 +09:00
parent bde078fe0d
commit dc648b0593

View File

@ -42,7 +42,7 @@ public class SuggestTestsBase extends AndroidTestCase {
final int displayWidth = getContext().getResources().getDisplayMetrics().widthPixels;
return new KeyboardId(locale.toString() + " keyboard",
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);
}