Skip to content
Snippets Groups Projects
Commit 8b6f788e authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "Add a forgotten constant"

parents 0236c892 c8c6585f
No related branches found
No related tags found
No related merge requests found
...@@ -44,8 +44,14 @@ public: ...@@ -44,8 +44,14 @@ public:
// Flag for terminal groups // Flag for terminal groups
static const int FLAG_IS_TERMINAL = 0x10; static const int FLAG_IS_TERMINAL = 0x10;
// Flag for shortcut targets presence
static const int FLAG_HAS_SHORTCUT_TARGETS = 0x08;
// Flag for bigram presence // Flag for bigram presence
static const int FLAG_HAS_BIGRAMS = 0x04; static const int FLAG_HAS_BIGRAMS = 0x04;
// Flag for shortcut-only words. Some words are shortcut-only, which means they match when
// the user types them but they don't pop in the suggestion strip, only the words they are
// shortcuts for do.
static const int FLAG_IS_SHORTCUT_ONLY = 0x02;
// Attribute (bigram/shortcut) related flags: // Attribute (bigram/shortcut) related flags:
// Flag for presence of more attributes // Flag for presence of more attributes
......
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