mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-28 07:16:20 +00:00
Added result to add and remove from autocomplete
This commit is contained in:
@@ -49,15 +49,15 @@ void reset_search_attempts(void)
|
||||
p_autocomplete_reset(ac);
|
||||
}
|
||||
|
||||
void contact_list_remove(const char * const name)
|
||||
gboolean contact_list_remove(const char * const name)
|
||||
{
|
||||
p_autocomplete_remove(ac, name);
|
||||
return p_autocomplete_remove(ac, name);
|
||||
}
|
||||
|
||||
void contact_list_add(const char * const name, const char * const show,
|
||||
gboolean contact_list_add(const char * const name, const char * const show,
|
||||
const char * const status)
|
||||
{
|
||||
p_autocomplete_add(ac, p_contact_new(name, show, status));
|
||||
return p_autocomplete_add(ac, p_contact_new(name, show, status));
|
||||
}
|
||||
|
||||
GSList * get_contact_list(void)
|
||||
|
||||
Reference in New Issue
Block a user