diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2024-04-01 22:23:48 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2024-04-01 22:23:48 +0200 |
commit | f3f9dc388fda6a7c220c6edb193b3ca540f84986 (patch) | |
tree | 11c96fe80fa368c7ce34ef37dc34c4cf1adb22fa /src/gui | |
parent | 7e997f87e80e3583480bb78ac6b094bda0ef012f (diff) | |
download | weechat-f3f9dc388fda6a7c220c6edb193b3ca540f84986.zip |
core: remove whitespace
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/gui-bar-item.c | 2 | ||||
-rw-r--r-- | src/gui/gui-bar.c | 18 |
2 files changed, 10 insertions, 10 deletions
diff --git a/src/gui/gui-bar-item.c b/src/gui/gui-bar-item.c index 385e46af5..d3ccf9265 100644 --- a/src/gui/gui-bar-item.c +++ b/src/gui/gui-bar-item.c @@ -2608,7 +2608,7 @@ gui_bar_item_print_log () log_printf ("[bar item (addr:%p)]", ptr_item); log_printf (" plugin . . . . . . . . : %p ('%s')", ptr_item->plugin, plugin_get_name (ptr_item->plugin)); - log_printf (" name . . . . . . . . . : '%s'", ptr_item->name); + log_printf (" name . . . . . . . . . : '%s'", ptr_item->name); log_printf (" build_callback . . . . : %p", ptr_item->build_callback); log_printf (" build_callback_pointer : %p", ptr_item->build_callback_pointer); log_printf (" build_callback_data. . : %p", ptr_item->build_callback_data); diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c index 2b6fdd00f..097fd979d 100644 --- a/src/gui/gui-bar.c +++ b/src/gui/gui-bar.c @@ -2425,13 +2425,13 @@ gui_bar_print_log () { log_printf (""); log_printf ("[bar (addr:%p)]", ptr_bar); - log_printf (" name . . . . . . . . . : '%s'", ptr_bar->name); - log_printf (" hidden . . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_HIDDEN])); - log_printf (" priority . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_PRIORITY])); + log_printf (" name . . . . . . . . . : '%s'", ptr_bar->name); + log_printf (" hidden . . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_HIDDEN])); + log_printf (" priority . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_PRIORITY])); log_printf (" type . . . . . . . . . : %d (%s)", CONFIG_ENUM(ptr_bar->options[GUI_BAR_OPTION_TYPE]), gui_bar_type_string[CONFIG_ENUM(ptr_bar->options[GUI_BAR_OPTION_TYPE])]); - log_printf (" conditions . . . . . . : '%s'", CONFIG_STRING(ptr_bar->options[GUI_BAR_OPTION_CONDITIONS])); + log_printf (" conditions . . . . . . : '%s'", CONFIG_STRING(ptr_bar->options[GUI_BAR_OPTION_CONDITIONS])); log_printf (" position . . . . . . . : %d (%s)", CONFIG_ENUM(ptr_bar->options[GUI_BAR_OPTION_POSITION]), gui_bar_position_string[CONFIG_ENUM(ptr_bar->options[GUI_BAR_OPTION_POSITION])]); @@ -2441,8 +2441,8 @@ gui_bar_print_log () log_printf (" filling_left_right . . : %d (%s)", CONFIG_ENUM(ptr_bar->options[GUI_BAR_OPTION_FILLING_LEFT_RIGHT]), gui_bar_filling_string[CONFIG_ENUM(ptr_bar->options[GUI_BAR_OPTION_FILLING_LEFT_RIGHT])]); - log_printf (" size . . . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SIZE])); - log_printf (" size_max . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SIZE_MAX])); + log_printf (" size . . . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SIZE])); + log_printf (" size_max . . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SIZE_MAX])); log_printf (" color_fg . . . . . . . : %d (%s)", CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_FG]), gui_color_get_name (CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_FG]))); @@ -2455,9 +2455,9 @@ gui_bar_print_log () log_printf (" color_bg_inactive. . . : %d (%s)", CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_BG_INACTIVE]), gui_color_get_name (CONFIG_COLOR(ptr_bar->options[GUI_BAR_OPTION_COLOR_BG_INACTIVE]))); - log_printf (" separator. . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SEPARATOR])); - log_printf (" items. . . . . . . . . : '%s'", CONFIG_STRING(ptr_bar->options[GUI_BAR_OPTION_ITEMS])); - log_printf (" items_count. . . . . . : %d", ptr_bar->items_count); + log_printf (" separator. . . . . . . : %d", CONFIG_INTEGER(ptr_bar->options[GUI_BAR_OPTION_SEPARATOR])); + log_printf (" items. . . . . . . . . : '%s'", CONFIG_STRING(ptr_bar->options[GUI_BAR_OPTION_ITEMS])); + log_printf (" items_count. . . . . . : %d", ptr_bar->items_count); for (i = 0; i < ptr_bar->items_count; i++) { log_printf (" items_subcount[%03d]. : %d", |