summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2010-06-04 12:35:25 +0200
committerSebastien Helleu <flashcode@flashtux.org>2010-06-04 12:35:25 +0200
commitff0a798634e2b27f6db2faea370cd6faba36d335 (patch)
tree48b1b72ca428f953030d4df122fb2cb3cd8482ee /src/core
parent4a61dc96338ef9af1ca677ff35ed813eebd6794a (diff)
downloadweechat-ff0a798634e2b27f6db2faea370cd6faba36d335.zip
Move options weechat.color.nicklist_prefix to irc plugin
Options renamed or removed: - weechat.color.nicklist_prefix1 renamed to irc.color.nick_prefix_op - weechat.color.nicklist_prefix2 renamed to irc.color.nick_prefix_halfop - weechat.color.nicklist_prefix3 renamed to irc.color.nick_prefix_voice - weechat.color.nicklist_prefix4 renamed to irc.color.nick_prefix_user - weechat.color.nicklist_prefix5 removed
Diffstat (limited to 'src/core')
-rw-r--r--src/core/wee-config.c35
-rw-r--r--src/core/wee-config.h5
2 files changed, 0 insertions, 40 deletions
diff --git a/src/core/wee-config.c b/src/core/wee-config.c
index 9170700e1..7f8f5f111 100644
--- a/src/core/wee-config.c
+++ b/src/core/wee-config.c
@@ -155,11 +155,6 @@ struct t_config_option *config_color_input_actions;
struct t_config_option *config_color_nicklist_group;
struct t_config_option *config_color_nicklist_away;
struct t_config_option *config_color_nicklist_offline;
-struct t_config_option *config_color_nicklist_prefix1;
-struct t_config_option *config_color_nicklist_prefix2;
-struct t_config_option *config_color_nicklist_prefix3;
-struct t_config_option *config_color_nicklist_prefix4;
-struct t_config_option *config_color_nicklist_prefix5;
/* config, completion section */
@@ -1836,36 +1831,6 @@ config_weechat_init_options ()
N_("text color for offline nicknames"),
NULL, -1, 0, "blue", NULL, 0,
NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix1 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix1", "color",
- N_("text color for prefix #1 in nicklist"),
- NULL, -1, 0, "lightgreen", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix2 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix2", "color",
- N_("text color for prefix #2 in nicklist"),
- NULL, -1, 0, "lightmagenta", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix3 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix3", "color",
- N_("text color for prefix #3 in nicklist"),
- NULL, -1, 0, "yellow", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix4 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix4", "color",
- N_("text color for prefix #4 in nicklist"),
- NULL, -1, 0, "blue", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
- config_color_nicklist_prefix5 = config_file_new_option (
- weechat_config_file, ptr_section,
- "nicklist_prefix5", "color",
- N_("text color for prefix #5 in nicklist"),
- NULL, -1, 0, "brown", NULL, 0,
- NULL, NULL, &config_change_color, NULL, NULL, NULL);
/* completion */
ptr_section = config_file_new_section (weechat_config_file, "completion",
diff --git a/src/core/wee-config.h b/src/core/wee-config.h
index f034f1b78..d8b82d91e 100644
--- a/src/core/wee-config.h
+++ b/src/core/wee-config.h
@@ -166,11 +166,6 @@ extern struct t_config_option *config_color_input_actions;
extern struct t_config_option *config_color_nicklist_group;
extern struct t_config_option *config_color_nicklist_away;
extern struct t_config_option *config_color_nicklist_offline;
-extern struct t_config_option *config_color_nicklist_prefix1;
-extern struct t_config_option *config_color_nicklist_prefix2;
-extern struct t_config_option *config_color_nicklist_prefix3;
-extern struct t_config_option *config_color_nicklist_prefix4;
-extern struct t_config_option *config_color_nicklist_prefix5;
extern struct t_config_option *config_completion_default_template;
extern struct t_config_option *config_completion_nick_add_space;