mirror of
https://github.com/weechat/weechat.git
synced 2026-07-05 12:25:42 +02:00
core: fix typo: childs -> children
This commit is contained in:
@@ -479,7 +479,7 @@
|
||||
'visible' (integer) +
|
||||
'level' (integer) +
|
||||
'parent' (pointer, hdata: 'nick_group') +
|
||||
'childs' (pointer, hdata: 'nick_group') +
|
||||
'children' (pointer, hdata: 'nick_group') +
|
||||
'last_child' (pointer, hdata: 'nick_group') +
|
||||
'nicks' (pointer, hdata: 'nick') +
|
||||
'last_nick' (pointer, hdata: 'nick') +
|
||||
|
||||
@@ -479,7 +479,7 @@
|
||||
'visible' (integer) +
|
||||
'level' (integer) +
|
||||
'parent' (pointer, hdata: 'nick_group') +
|
||||
'childs' (pointer, hdata: 'nick_group') +
|
||||
'children' (pointer, hdata: 'nick_group') +
|
||||
'last_child' (pointer, hdata: 'nick_group') +
|
||||
'nicks' (pointer, hdata: 'nick') +
|
||||
'last_nick' (pointer, hdata: 'nick') +
|
||||
|
||||
@@ -479,7 +479,7 @@
|
||||
'visible' (integer) +
|
||||
'level' (integer) +
|
||||
'parent' (pointer, hdata: 'nick_group') +
|
||||
'childs' (pointer, hdata: 'nick_group') +
|
||||
'children' (pointer, hdata: 'nick_group') +
|
||||
'last_child' (pointer, hdata: 'nick_group') +
|
||||
'nicks' (pointer, hdata: 'nick') +
|
||||
'last_nick' (pointer, hdata: 'nick') +
|
||||
|
||||
@@ -479,7 +479,7 @@
|
||||
'visible' (integer) +
|
||||
'level' (integer) +
|
||||
'parent' (pointer, hdata: 'nick_group') +
|
||||
'childs' (pointer, hdata: 'nick_group') +
|
||||
'children' (pointer, hdata: 'nick_group') +
|
||||
'last_child' (pointer, hdata: 'nick_group') +
|
||||
'nicks' (pointer, hdata: 'nick') +
|
||||
'last_nick' (pointer, hdata: 'nick') +
|
||||
|
||||
@@ -295,7 +295,7 @@ gui_layout_buffer_apply (struct t_gui_layout_buffer *layout_buffers)
|
||||
void
|
||||
gui_layout_window_remove (struct t_gui_layout_window *layout_window)
|
||||
{
|
||||
/* first free childs */
|
||||
/* first free children */
|
||||
if (layout_window->child1)
|
||||
gui_layout_window_remove (layout_window->child1);
|
||||
if (layout_window->child2)
|
||||
|
||||
+21
-21
File diff suppressed because it is too large
Load Diff
@@ -30,7 +30,7 @@ struct t_gui_nick_group
|
||||
int visible; /* 1 if group is displayed */
|
||||
int level; /* group level (root is 0) */
|
||||
struct t_gui_nick_group *parent; /* parent */
|
||||
struct t_gui_nick_group *childs; /* childs */
|
||||
struct t_gui_nick_group *children; /* children */
|
||||
struct t_gui_nick_group *last_child; /* last child */
|
||||
struct t_gui_nick *nicks; /* nicks for group */
|
||||
struct t_gui_nick *last_nick; /* last nick for group */
|
||||
|
||||
Reference in New Issue
Block a user