Skip to content
Snippets Groups Projects
Commit 9e15b455 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Small clean up on MAX_LOCALE_STRING_LENGTH

Change-Id: I77f93879e841f33b81f6d193d1bd5782ad2124f5
parent 91db602b
No related branches found
No related tags found
No related merge requests found
......@@ -330,9 +330,6 @@ static inline void prof_out(void) {
#define MAX_PROBABILITY 255
#define MAX_BIGRAM_ENCODED_PROBABILITY 15
// Assuming locale strings such as en_US, sr-Latn etc.
#define MAX_LOCALE_STRING_LENGTH 10
// Max value for length, distance and probability which are used in weighting
// TODO: Remove
#define MAX_VALUE_FOR_WEIGHTING 10000000
......
......@@ -103,6 +103,8 @@ class ProximityInfo {
const int KEYBOARD_HEIGHT;
const float KEYBOARD_HYPOTENUSE;
const bool HAS_TOUCH_POSITION_CORRECTION_DATA;
// Assuming locale strings such as en_US, sr-Latn etc.
static const int MAX_LOCALE_STRING_LENGTH = 10;
char mLocaleStr[MAX_LOCALE_STRING_LENGTH];
int *mProximityCharsArray;
int mKeyXCoordinates[MAX_KEY_COUNT_IN_A_KEYBOARD];
......
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