diff options
author | 2013-08-20 15:48:16 +0900 | |
---|---|---|
committer | 2013-08-20 17:11:51 +0900 | |
commit | 112257e40f6f6d914fac1c3a45f39a770693b386 (patch) | |
tree | 1f0fa2ec933d627f022a603f0f8693aeeabb9a43 /native/jni/jni_common.cpp | |
parent | 66004ce2de1579d8ae1fb3411ce98f1e9e37cf8b (diff) | |
download | latinime-112257e40f6f6d914fac1c3a45f39a770693b386.tar.gz latinime-112257e40f6f6d914fac1c3a45f39a770693b386.tar.xz latinime-112257e40f6f6d914fac1c3a45f39a770693b386.zip |
Rename BinaryDictDecoder to Ver3DictDecoder.
Change-Id: Ibf9b95b658df6e2c2218bdb62e2380f326a03832
Diffstat (limited to 'native/jni/jni_common.cpp')
-rw-r--r-- | native/jni/jni_common.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/native/jni/jni_common.cpp b/native/jni/jni_common.cpp index d44be6705..3a8f4362d 100644 --- a/native/jni/jni_common.cpp +++ b/native/jni/jni_common.cpp @@ -23,7 +23,7 @@ #include "com_android_inputmethod_latin_BinaryDictionary.h" #include "com_android_inputmethod_latin_DicTraverseSession.h" #endif -#include "com_android_inputmethod_latin_makedict_BinaryDictDecoder.h" +#include "com_android_inputmethod_latin_makedict_Ver3DictDecoder.h" #include "defines.h" /* @@ -55,8 +55,8 @@ jint JNI_OnLoad(JavaVM *vm, void *reserved) { return -1; } #endif - if (!latinime::register_BinaryDictDecoder(env)) { - AKLOGE("ERROR: BinaryDictDecoder native registration failed"); + if (!latinime::register_Ver3DictDecoder(env)) { + AKLOGE("ERROR: Ver3DictDecoder native registration failed"); return -1; } /* success -- return valid version number */ |