| Index: third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp b/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp
|
| index 67f9b06c52d10896fa5dfb42a670911caa708aca..94d2d7cc79f5b630ab582c181aa1245da2708127 100644
|
| --- a/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/spellcheck/SpellChecker.cpp
|
| @@ -1084,7 +1084,7 @@ Vector<TextCheckingResult> SpellChecker::findMisspellings(const String& text) {
|
| misspelling.decoration = TextDecorationTypeSpelling;
|
| misspelling.location = wordStart + misspellingLocation;
|
| misspelling.length = misspellingLength;
|
| - results.append(misspelling);
|
| + results.push_back(misspelling);
|
| }
|
| wordStart = wordEnd;
|
| }
|
|
|