29 lines
989 B
Diff
29 lines
989 B
Diff
--- a/src/af/xap/xp/enchant_checker.cpp.orig 2020-06-02 19:00:17.626941767 +0530
|
|
+++ b/src/af/xap/xp/enchant_checker.cpp 2020-06-02 19:01:36.075993221 +0530
|
|
@@ -127,7 +127,7 @@
|
|
pvSugg->addItem (ucszSugg);
|
|
}
|
|
|
|
- enchant_dict_free_suggestions (m_dict, suggestions);
|
|
+ enchant_dict_free_string_list (m_dict, suggestions);
|
|
}
|
|
|
|
return pvSugg;
|
|
@@ -139,7 +139,7 @@
|
|
|
|
if (word && len) {
|
|
UT_UTF8String utf8 (word, len);
|
|
- enchant_dict_add_to_personal (m_dict, utf8.utf8_str(), utf8.byteLength());
|
|
+ enchant_dict_add (m_dict, utf8.utf8_str(), utf8.byteLength());
|
|
return true;
|
|
}
|
|
return false;
|
|
@@ -150,7 +150,7 @@
|
|
UT_return_val_if_fail (m_dict, false);
|
|
|
|
UT_UTF8String ignore (toCorrect, toCorrectLen);
|
|
- return enchant_dict_is_in_session (m_dict, ignore.utf8_str(), ignore.byteLength()) != 0;
|
|
+ return enchant_dict_is_added (m_dict, ignore.utf8_str(), ignore.byteLength()) != 0;
|
|
}
|
|
|
|
void EnchantChecker::ignoreWord (const UT_UCSChar *toCorrect, size_t toCorrectLen)
|