Renamed .SMBuild files to smbuild for simplicity Added musl-fts, musl-obstack, glslang, python-glad, libptytty, libmilter, elfutils and fuse to base section build list Discarded fuse2 and fuse3 from base section Temporarily discarded slapt-get, syslinux, p7zip, acpid, libelf-compat, gnu-eif, libtirpc, mozilla-nss, lua53, qpdf, kernel-source and signify from base section build list Disabled nls and made amends to base/e2fsprogs Upgraded base/git to 2.46.2 Upgraded extra/gnumeric to 1.12.57 Disabled nls in base/gnutls, extra/dia Disabled a patch and made amends in base/llvm Fixed configure.local file in base/mandoc Upgraded base/rust to 1.79 Fixed a ton of build files to use build prefix as /usr and miscellaneous changes Discarded extra/bluez,blueman,scrcpy,adafruit-io Added tomb to extra Added new build option to extra/libass Upgraded extra/mpv to 0.37.0 Disabled tests in gtk/gdk-pixbuf Upgraded gtk/goffice to 0.10.57 Added gtk-doc to gtk section Fixed build options in gtk/gtk2 Added new patches to gtk/gtk3 Added gtksourceview to gtk section Added vulkan-headers to xorg section Upgraded xorg/mesa to 23.1.9 Added libplacebo to xorg section Fixed build stuff in xorg/glew
30 lines
1,014 B
Diff
30 lines
1,014 B
Diff
--- abiword-3.0.2/src/af/xap/xp/enchant_checker.cpp.orig 2013-04-07 13:53:03.000000000 +0000
|
|
+++ abiword-3.0.2/src/af/xap/xp/enchant_checker.cpp 2017-11-19 22:54:41.236180298 +0000
|
|
@@ -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)
|
|
|