aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-09-08 22:40:36 +0900
committerJean Chalard <jchalard@google.com>2014-09-08 22:40:36 +0900
commit7140035932ec98ce003b6b7a5100a0aca501505f (patch)
tree6e6c013e418eabdf98c3e4b81cbc0c2097383f64
parent1cf2acd8de53e1b6fa156af065330c687ccdcb86 (diff)
downloadlatinime-7140035932ec98ce003b6b7a5100a0aca501505f.tar.gz
latinime-7140035932ec98ce003b6b7a5100a0aca501505f.tar.xz
latinime-7140035932ec98ce003b6b7a5100a0aca501505f.zip
Fix a missing initialization
Change-Id: I14a35f5a38b6e0f48c95cbb8c0c6e4507cd61fa7
-rw-r--r--java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java b/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java
index 42771ce11..97aad3b6d 100644
--- a/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java
+++ b/java/src/com/android/inputmethod/latin/settings/SpacingAndPunctuations.java
@@ -82,8 +82,10 @@ public final class SpacingAndPunctuations {
mSortedSymbolsClusteringTogether = model.mSortedSymbolsClusteringTogether;
mSortedWordConnectors = model.mSortedWordConnectors;
mSortedWordSeparators = overrideSortedWordSeparators;
+ mSortedSentenceTerminators = model.mSortedSentenceTerminators;
mSuggestPuncList = model.mSuggestPuncList;
mSentenceSeparator = model.mSentenceSeparator;
+ mAbbreviationMarker = model.mAbbreviationMarker;
mSentenceSeparatorAndSpace = model.mSentenceSeparatorAndSpace;
mCurrentLanguageHasSpaces = model.mCurrentLanguageHasSpaces;
mUsesAmericanTypography = model.mUsesAmericanTypography;