Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 629808 | Differences between
and this patch

Collapse All | Expand All

(-)evolution-3.24.5.orig/evolution-3.24.5/src/e-util/e-spell-dictionary.c (-1 / +1 lines)
Lines 751-757 Link Here
751
	suggestions = enchant_dict_suggest (enchant_dict, word, length, &count);
751
	suggestions = enchant_dict_suggest (enchant_dict, word, length, &count);
752
	for (ii = 0; ii < count; ii++)
752
	for (ii = 0; ii < count; ii++)
753
		list = g_list_prepend (list, g_strdup (suggestions[ii]));
753
		list = g_list_prepend (list, g_strdup (suggestions[ii]));
754
	enchant_dict_free_suggestions (enchant_dict, suggestions);
754
	enchant_dict_free_string_list (enchant_dict, suggestions);
755
755
756
	g_object_unref (spell_checker);
756
	g_object_unref (spell_checker);
757
757
(-)evolution-3.24.5.orig/src/e-util/e-spell-dictionary.c (-1 / +1 lines)
Lines 751-757 Link Here
751
	suggestions = enchant_dict_suggest (enchant_dict, word, length, &count);
751
	suggestions = enchant_dict_suggest (enchant_dict, word, length, &count);
752
	for (ii = 0; ii < count; ii++)
752
	for (ii = 0; ii < count; ii++)
753
		list = g_list_prepend (list, g_strdup (suggestions[ii]));
753
		list = g_list_prepend (list, g_strdup (suggestions[ii]));
754
	enchant_dict_free_suggestions (enchant_dict, suggestions);
754
	enchant_dict_free_string_list (enchant_dict, suggestions);
755
755
756
	g_object_unref (spell_checker);
756
	g_object_unref (spell_checker);
757
757

Return to bug 629808