Felipe Lema
2013-11-21 15:59:02 UTC
Hi, everyone
The documentation instructs on how to recover all suggestions for a
word. Since I'm only interested in the first suggestion, I was wondering
if I _must_ call aspell_string_enumeration_next() until it throws NULL.
//...
const char *word = aspell_string_enumeration_next(aspell_elements);
while (aspell_string_enumeration_next(aspell_elements) )
;
delete_aspell_String_enumeration(elements);
//...
Thanks
Felipe Lema
The documentation instructs on how to recover all suggestions for a
word. Since I'm only interested in the first suggestion, I was wondering
if I _must_ call aspell_string_enumeration_next() until it throws NULL.
//...
const char *word = aspell_string_enumeration_next(aspell_elements);
while (aspell_string_enumeration_next(aspell_elements) )
;
delete_aspell_String_enumeration(elements);
//...
Thanks
Felipe Lema