enchant-2.1.patch 1013 B

123456789101112131415161718192021222324252627282930
  1. --- abiword-3.0.2/src/af/xap/xp/enchant_checker.cpp.orig 2013-04-07 13:53:03.000000000 +0000
  2. +++ abiword-3.0.2/src/af/xap/xp/enchant_checker.cpp 2017-11-19 22:54:41.236180298 +0000
  3. @@ -127,7 +127,7 @@
  4. pvSugg->addItem (ucszSugg);
  5. }
  6. - enchant_dict_free_suggestions (m_dict, suggestions);
  7. + enchant_dict_free_string_list (m_dict, suggestions);
  8. }
  9. return pvSugg;
  10. @@ -139,7 +139,7 @@
  11. if (word && len) {
  12. UT_UTF8String utf8 (word, len);
  13. - enchant_dict_add_to_personal (m_dict, utf8.utf8_str(), utf8.byteLength());
  14. + enchant_dict_add (m_dict, utf8.utf8_str(), utf8.byteLength());
  15. return true;
  16. }
  17. return false;
  18. @@ -150,7 +150,7 @@
  19. UT_return_val_if_fail (m_dict, false);
  20. UT_UTF8String ignore (toCorrect, toCorrectLen);
  21. - return enchant_dict_is_in_session (m_dict, ignore.utf8_str(), ignore.byteLength()) != 0;
  22. + return enchant_dict_is_added (m_dict, ignore.utf8_str(), ignore.byteLength()) != 0;
  23. }
  24. void EnchantChecker::ignoreWord (const UT_UCSChar *toCorrect, size_t toCorrectLen)