Skip to content
Snippets Groups Projects
Commit dc648b05 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix arguments order of KeyboardId constructor

Change-Id: I0b958f10e2146a3a70c9c0643f62ad48ae472631
parent bde078fe
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,7 @@ public class SuggestTestsBase extends AndroidTestCase { ...@@ -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);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment