diff --git a/doc/en/weechat_plugin_api.en.txt b/doc/en/weechat_plugin_api.en.txt index 03a5a13a0..4f97c02fe 100644 --- a/doc/en/weechat_plugin_api.en.txt +++ b/doc/en/weechat_plugin_api.en.txt @@ -11102,9 +11102,9 @@ Prototype: [source,C] ---------------------------------------- -void gui_nicklist_get_next_item (struct t_gui_buffer *buffer, - struct t_gui_nick_group **group, - struct t_gui_nick **nick); +void weechat_nicklist_get_next_item (struct t_gui_buffer *buffer, + struct t_gui_nick_group **group, + struct t_gui_nick **nick); ---------------------------------------- Arguments: @@ -11122,7 +11122,7 @@ struct t_gui_nick *ptr_nick; ptr_group = NULL; ptr_nick = NULL; -gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); +weechat_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); while (ptr_group || ptr_nick) { if (ptr_nick) @@ -11135,7 +11135,7 @@ while (ptr_group || ptr_nick) /* group */ /* ... */ } - gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); + weechat_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); } ---------------------------------------- diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index f6389f49e..acb60ea9c 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -11295,9 +11295,9 @@ Prototype : [source,C] ---------------------------------------- -void gui_nicklist_get_next_item (struct t_gui_buffer *buffer, - struct t_gui_nick_group **group, - struct t_gui_nick **nick); +void weechat_nicklist_get_next_item (struct t_gui_buffer *buffer, + struct t_gui_nick_group **group, + struct t_gui_nick **nick); ---------------------------------------- Paramètres : @@ -11315,7 +11315,7 @@ struct t_gui_nick *ptr_nick; ptr_group = NULL; ptr_nick = NULL; -gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); +weechat_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); while (ptr_group || ptr_nick) { if (ptr_nick) @@ -11328,7 +11328,7 @@ while (ptr_group || ptr_nick) /* groupe */ /* ... */ } - gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); + weechat_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); } ---------------------------------------- diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index f08fe03e2..2e73c967c 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -11262,9 +11262,9 @@ Prototipo: [source,C] ---------------------------------------- -void gui_nicklist_get_next_item (struct t_gui_buffer *buffer, - struct t_gui_nick_group **group, - struct t_gui_nick **nick); +void weechat_nicklist_get_next_item (struct t_gui_buffer *buffer, + struct t_gui_nick_group **group, + struct t_gui_nick **nick); ---------------------------------------- Argomenti: @@ -11282,7 +11282,7 @@ struct t_gui_nick *ptr_nick; ptr_group = NULL; ptr_nick = NULL; -gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); +weechat_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); while (ptr_group || ptr_nick) { if (ptr_nick) @@ -11295,7 +11295,7 @@ while (ptr_group || ptr_nick) /* gruppo */ /* ... */ } - gui_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); + weechat_nicklist_get_next_item (buffer, &ptr_group, &ptr_nick); } ----------------------------------------