diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-12-13 18:51:44 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-12-13 18:51:44 +0100 |
commit | 7d34812f1cd091b70395808381469c6c1f5c659a (patch) | |
tree | 8dd82177eaad95dc216bf1b68926b8398440a198 /src/gui/gtk/gui-gtk-bar-window.c | |
parent | 9db5682186de96b1deeb48e76887df7c74e77036 (diff) | |
download | weechat-7d34812f1cd091b70395808381469c6c1f5c659a.zip |
core: reformat comments for functions
Diffstat (limited to 'src/gui/gtk/gui-gtk-bar-window.c')
-rw-r--r-- | src/gui/gtk/gui-gtk-bar-window.c | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/gui/gtk/gui-gtk-bar-window.c b/src/gui/gtk/gui-gtk-bar-window.c index 53e016f92..cabc562e0 100644 --- a/src/gui/gtk/gui-gtk-bar-window.c +++ b/src/gui/gtk/gui-gtk-bar-window.c @@ -38,7 +38,7 @@ /* - * gui_bar_window_objects_init: init Gtk windows for bar window + * Initializes Gtk windows for bar window. */ int @@ -57,7 +57,7 @@ gui_bar_window_objects_init (struct t_gui_bar_window *bar_window) } /* - * gui_window_objects_free: free Gtk windows for a bar window + * Frees Gtk windows for a bar window. */ void @@ -68,7 +68,7 @@ gui_bar_window_objects_free (struct t_gui_bar_window *bar_window) } /* - * gui_bar_window_create_win: create curses window for bar + * Creates curses window for bar. */ void @@ -80,8 +80,9 @@ gui_bar_window_create_win (struct t_gui_bar_window *bar_window) } /* - * gui_bar_window_print_string: print a string text on a bar window - * return number of chars displayed on screen + * Prints a string text on a bar window. + * + * Returns number of chars displayed on screen. */ int @@ -97,7 +98,7 @@ gui_bar_window_print_string (struct t_gui_bar_window *bar_window, } /* - * gui_bar_window_draw: draw a bar for a window + * Draws a bar for a window. */ void @@ -111,7 +112,7 @@ gui_bar_window_draw (struct t_gui_bar_window *bar_window, } /* - * gui_bar_window_objects_print_log: print bar window infos in log (usually for crash dump) + * Prints bar window infos in WeeChat log file (usually for crash dump). */ void |