diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-22 17:54:54 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-09-22 17:54:54 +0200 |
commit | 490c821997463a35ddcf61940a5a0da9c8f430cb (patch) | |
tree | dba5a1faf5448bd5855699260ca4ebb94789f6b4 /src/gui | |
parent | e2cccb9a624683204325eee4d1a2e65a15e0dda9 (diff) | |
download | weechat-490c821997463a35ddcf61940a5a0da9c8f430cb.zip |
core: rename options *_inactive_line to *_inactive_buffer
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/curses/gui-curses-chat.c | 4 | ||||
-rw-r--r-- | src/gui/curses/gui-curses-color.c | 4 | ||||
-rw-r--r-- | src/gui/gui-color.h | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/curses/gui-curses-chat.c b/src/gui/curses/gui-curses-chat.c index 811a7814d..f1633449e 100644 --- a/src/gui/curses/gui-curses-chat.c +++ b/src/gui/curses/gui-curses-chat.c @@ -120,7 +120,7 @@ gui_chat_reset_style (struct t_gui_window *window, struct t_gui_line *line) if (line && !(line->data->buffer->active)) { gui_window_reset_style (GUI_WINDOW_OBJECTS(window)->win_chat, - GUI_COLOR_CHAT_INACTIVE_LINE); + GUI_COLOR_CHAT_INACTIVE_BUFFER); } else { @@ -591,7 +591,7 @@ gui_chat_display_time_to_prefix (struct t_gui_window *window, ((!CONFIG_BOOLEAN(config_look_color_inactive_prefix_buffer)) || ((gui_current_window == window) && (line->data->buffer->active))) ? GUI_COLOR_CHAT_PREFIX_BUFFER : - GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_LINE); + GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_BUFFER); } if (window->win_chat_cursor_y < window->coords_size) diff --git a/src/gui/curses/gui-curses-color.c b/src/gui/curses/gui-curses-color.c index 237501983..027910fc7 100644 --- a/src/gui/curses/gui-curses-color.c +++ b/src/gui/curses/gui-curses-color.c @@ -1383,8 +1383,8 @@ gui_color_init_weechat () gui_color_build (GUI_COLOR_CHAT_PREFIX_BUFFER, CONFIG_COLOR(config_color_chat_prefix_buffer), CONFIG_COLOR(config_color_chat_bg)); gui_color_build (GUI_COLOR_CHAT_TAGS, CONFIG_COLOR(config_color_chat_tags), CONFIG_COLOR(config_color_chat_bg)); gui_color_build (GUI_COLOR_CHAT_INACTIVE_WINDOW, CONFIG_COLOR(config_color_chat_inactive_window), CONFIG_COLOR(config_color_chat_bg)); - gui_color_build (GUI_COLOR_CHAT_INACTIVE_LINE, CONFIG_COLOR(config_color_chat_inactive_line), CONFIG_COLOR(config_color_chat_bg)); - gui_color_build (GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_LINE, CONFIG_COLOR(config_color_chat_prefix_buffer_inactive_line), CONFIG_COLOR(config_color_chat_bg)); + gui_color_build (GUI_COLOR_CHAT_INACTIVE_BUFFER, CONFIG_COLOR(config_color_chat_inactive_buffer), CONFIG_COLOR(config_color_chat_bg)); + gui_color_build (GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_BUFFER, CONFIG_COLOR(config_color_chat_prefix_buffer_inactive_buffer), CONFIG_COLOR(config_color_chat_bg)); /* * define old nick colors for compatibility on /upgrade with previous diff --git a/src/gui/gui-color.h b/src/gui/gui-color.h index 90c2574a9..b78cfe4b0 100644 --- a/src/gui/gui-color.h +++ b/src/gui/gui-color.h @@ -63,8 +63,8 @@ enum t_gui_color_enum GUI_COLOR_CHAT_PREFIX_BUFFER, GUI_COLOR_CHAT_TAGS, GUI_COLOR_CHAT_INACTIVE_WINDOW, - GUI_COLOR_CHAT_INACTIVE_LINE, - GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_LINE, + GUI_COLOR_CHAT_INACTIVE_BUFFER, + GUI_COLOR_CHAT_PREFIX_BUFFER_INACTIVE_BUFFER, /* number of colors */ GUI_COLOR_NUM_COLORS, |