Fix: List::Insert → List::InsertAt
This commit is contained in:
parent
ff2230735e
commit
21f1804527
1 changed files with 1 additions and 1 deletions
|
|
@ -71,7 +71,7 @@ static bool load_dictionary_collection() {
|
|||
new (userDictionary) StenoUserDictionary(userDictData);
|
||||
|
||||
// Add user dict as highest priority (first in list)
|
||||
entries.Insert(0, StenoDictionaryListEntry(&userDictionary.value, true));
|
||||
entries.InsertAt(0, StenoDictionaryListEntry(&userDictionary.value, true));
|
||||
|
||||
new (dictionaryList)
|
||||
StenoDictionaryList(static_cast<List<StenoDictionaryListEntry> &&>(entries));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue