suggest           497 src/editor/spell.c aspell_suggest (GPtrArray * suggest, const char *word, const int word_size)
suggest           520 src/editor/spell.c                     g_ptr_array_add (suggest, g_strdup (cur_sugg_word));
suggest           590 src/editor/spell.c             GPtrArray *suggest;
suggest           594 src/editor/spell.c             suggest = g_ptr_array_new_with_free_func (g_free);
suggest           596 src/editor/spell.c             res = aspell_suggest (suggest, match_word->str, (int) word_len);
suggest           608 src/editor/spell.c                     spell_dialog_spell_suggest_show (edit, match_word->str, &new_word, suggest);
suggest           638 src/editor/spell.c             g_ptr_array_free (suggest, TRUE);
suggest           713 src/editor/spell.c                                  const GPtrArray * suggest)
suggest           773 src/editor/spell.c     for (i = 0; i < suggest->len; i++)
suggest           774 src/editor/spell.c         listbox_add_item (sug_list, LISTBOX_APPEND_AT_END, 0, g_ptr_array_index (suggest, i), NULL,
suggest            19 src/editor/spell.h unsigned int aspell_suggest (GPtrArray * suggest, const char *word, const int word_size);
suggest            31 src/editor/spell.h                                      const GPtrArray * suggest);