aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-05-24 20:27:56 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2011-05-24 20:27:56 -0700
commitee80a77ebf5fa1a70a2766e048157d02cef30626 (patch)
treef2a97e2317e56aa1bf1e8eda2a60dccd1c138ebc /tests/src/com/android/inputmethod/latin/SuggestTestsBase.java
parentd5096494aa49d2017ccfb4e61b56f154f4b39c8a (diff)
parentdc648b059397ff89387c78e4ef25f55e0d9a572c (diff)
downloadlatinime-ee80a77ebf5fa1a70a2766e048157d02cef30626.tar.gz
latinime-ee80a77ebf5fa1a70a2766e048157d02cef30626.tar.xz
latinime-ee80a77ebf5fa1a70a2766e048157d02cef30626.zip
Merge "Fix arguments order of KeyboardId constructor"
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/SuggestTestsBase.java')
-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);
}