aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-05-25 11:40:53 +0900
committerTadashi G. Takaoka <takaoka@google.com>2011-05-25 11:40:53 +0900
commitdc648b059397ff89387c78e4ef25f55e0d9a572c (patch)
treef2a97e2317e56aa1bf1e8eda2a60dccd1c138ebc /tests/src
parentbde078fe0dcefdd77c7e77080dedb4bece081e73 (diff)
downloadlatinime-dc648b059397ff89387c78e4ef25f55e0d9a572c.tar.gz
latinime-dc648b059397ff89387c78e4ef25f55e0d9a572c.tar.xz
latinime-dc648b059397ff89387c78e4ef25f55e0d9a572c.zip
Fix arguments order of KeyboardId constructor
Change-Id: I0b958f10e2146a3a70c9c0643f62ad48ae472631
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/com/android/inputmethod/latin/SuggestTestsBase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java b/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
index cf4ccfeaa..28766c21f 100644
--- a/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
+++ b/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
@@ -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);
}