am 8b6f788e: Merge "Add a forgotten constant"

* commit '8b6f788e18844b281b80256c91c35573fcd97946':
  Add a forgotten constant
main
Jean Chalard 2011-12-26 20:35:27 -08:00 committed by Android Git Automerger
commit 37f7d3c297
1 changed files with 6 additions and 0 deletions

View File

@ -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