diff options
author | 2012-07-12 12:55:48 +0900 | |
---|---|---|
committer | 2012-07-12 19:21:42 +0900 | |
commit | 6931df9c17aaeb04288f937cabf956c1b9eb0cc9 (patch) | |
tree | 7174a81388c673b10994c048a3707ce5da7f4fc1 /native/jni/src/gesture/gesture_decoder_wrapper.h | |
parent | 2c5cf744e554cbe0872f1b3e18cbd1383b0189f9 (diff) | |
download | latinime-6931df9c17aaeb04288f937cabf956c1b9eb0cc9.tar.gz latinime-6931df9c17aaeb04288f937cabf956c1b9eb0cc9.tar.xz latinime-6931df9c17aaeb04288f937cabf956c1b9eb0cc9.zip |
Pass an array to output suggestion types (A119a)
This needs the matching A119b change to not break the build.
The array is passed, but not used yet.
Bug: 6166228
Change-Id: Ia91d658461d989ee8c94e9b31bb06f4a36f4c5b6
Diffstat (limited to 'native/jni/src/gesture/gesture_decoder_wrapper.h')
-rw-r--r-- | native/jni/src/gesture/gesture_decoder_wrapper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/native/jni/src/gesture/gesture_decoder_wrapper.h b/native/jni/src/gesture/gesture_decoder_wrapper.h index 35982f03d..03c84b5fd 100644 --- a/native/jni/src/gesture/gesture_decoder_wrapper.h +++ b/native/jni/src/gesture/gesture_decoder_wrapper.h @@ -39,13 +39,13 @@ class GestureDecoderWrapper : public IncrementalDecoderInterface { int getSuggestions(ProximityInfo *pInfo, int *inputXs, int *inputYs, int *times, int *pointerIds, int *codes, int inputSize, int commitPoint, - unsigned short *outWords, int *frequencies, int *outputIndices) { + unsigned short *outWords, int *frequencies, int *outputIndices, int *outputTypes) { if (!mIncrementalDecoderInterface) { return 0; } return mIncrementalDecoderInterface->getSuggestions( pInfo, inputXs, inputYs, times, pointerIds, codes, inputSize, commitPoint, - outWords, frequencies, outputIndices); + outWords, frequencies, outputIndices, outputTypes); } void reset() { |