diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-11-20 08:01:59 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-11-20 08:01:59 +0000 |
commit | 5a970dffbb4f3a01e2a04052ae1c07f66dd7d963 (patch) | |
tree | 261a19203f5fd645ec25fa892605ea267f74772a /src/common | |
parent | d5affecc23554c886d81c4b735dca42ac2fd0bd2 (diff) | |
download | weechat-5a970dffbb4f3a01e2a04052ae1c07f66dd7d963.zip |
Renamed options "col_chat_marker*" to "col_chat_read_marker*"
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/weeconfig.c | 12 | ||||
-rw-r--r-- | src/common/weeconfig.h | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/src/common/weeconfig.c b/src/common/weeconfig.c index 8722b7d17..dc0916cb4 100644 --- a/src/common/weeconfig.c +++ b/src/common/weeconfig.c @@ -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"), diff --git a/src/common/weeconfig.h b/src/common/weeconfig.h index e74d2db51..6d17bb9ab 100644 --- a/src/common/weeconfig.h +++ b/src/common/weeconfig.h @@ -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; |