1
0
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:
Sebastien Helleu
2011-10-25 09:13:18 +02:00
parent 328d8e0f95
commit d6f4f6e74c
7 changed files with 27 additions and 27 deletions
+1 -1
View File
@@ -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') +
+1 -1
View File
@@ -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') +
+1 -1
View File
@@ -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') +
+1 -1
View File
@@ -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') +
+1 -1
View File
@@ -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
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -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 */