1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-28 13:56:37 +02:00

Renamed options "col_chat_marker*" to "col_chat_read_marker*"

This commit is contained in:
Sebastien Helleu
2005-11-20 08:01:59 +00:00
parent d5affecc23
commit 5a970dffbb
8 changed files with 22 additions and 22 deletions
+6 -6
View File
@@ -256,8 +256,8 @@ int cfg_col_chat_channel;
int cfg_col_chat_dark;
int cfg_col_chat_highlight;
int cfg_col_chat_bg;
int cfg_col_chat_marker;
int cfg_col_chat_marker_bg;
int cfg_col_chat_read_marker;
int cfg_col_chat_read_marker_bg;
int cfg_col_status;
int cfg_col_status_delimiters;
int cfg_col_status_channel;
@@ -372,14 +372,14 @@ t_config_option weechat_options_colors[] =
N_("background for chat window"),
OPTION_TYPE_COLOR, 0, 0, 0,
"default", NULL, &cfg_col_chat_bg, NULL, &config_change_color },
{ "col_chat_marker", N_("color for unread data marker"),
{ "col_chat_read_marker", N_("color for unread data marker"),
N_("color for unread data marker"),
OPTION_TYPE_COLOR, 0, 0, 0,
"yellow", NULL, &cfg_col_chat_marker, NULL, &config_change_color },
{ "col_chat_marker_bg", N_("background for unread data marker"),
"yellow", NULL, &cfg_col_chat_read_marker, NULL, &config_change_color },
{ "col_chat_read_marker_bg", N_("background for unread data marker"),
N_("background for unread data marker"),
OPTION_TYPE_COLOR, 0, 0, 0,
"magenta", NULL, &cfg_col_chat_marker_bg, NULL, &config_change_color },
"magenta", NULL, &cfg_col_chat_read_marker_bg, NULL, &config_change_color },
/* status window */
{ "col_status", N_("color for status bar"),
+2 -2
View File
@@ -129,8 +129,8 @@ extern int cfg_col_chat_channel;
extern int cfg_col_chat_dark;
extern int cfg_col_chat_highlight;
extern int cfg_col_chat_bg;
extern int cfg_col_chat_marker;
extern int cfg_col_chat_marker_bg;
extern int cfg_col_chat_read_marker;
extern int cfg_col_chat_read_marker_bg;
extern int cfg_col_status;
extern int cfg_col_status_delimiters;
extern int cfg_col_status_channel;