diff options
author | Patrick Griffis <tingping@tingping.se> | 2016-08-20 23:24:19 -0400 |
---|---|---|
committer | Patrick Griffis <tingping@tingping.se> | 2016-08-20 23:24:19 -0400 |
commit | dc09f2c75dba14e40fbdd69d3bbd850010d80451 (patch) | |
tree | df4ae0ea7d7ac41bc98e885c7980792072f9daa6 /src/common | |
parent | 97d4afc4fb10e9036b26c73efd41872f4601b5b8 (diff) |
Remove unused preference
I can't really think of a reason this would be needed and since it doesn't do anything, and didn't since xchat, might as well remove it.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/cfgfiles.c | 2 | ||||
-rw-r--r-- | src/common/hexchat.h | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index 675a4140..62107a31 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -459,7 +459,6 @@ const struct prefs vars[] = {"gui_ulist_hide", P_OFFINT (hex_gui_ulist_hide), TYPE_BOOL}, {"gui_ulist_icons", P_OFFINT (hex_gui_ulist_icons), TYPE_BOOL}, {"gui_ulist_pos", P_OFFINT (hex_gui_ulist_pos), TYPE_INT}, - {"gui_ulist_resizable", P_OFFINT (hex_gui_ulist_resizable), TYPE_BOOL}, {"gui_ulist_show_hosts", P_OFFINT(hex_gui_ulist_show_hosts), TYPE_BOOL}, {"gui_ulist_sort", P_OFFINT (hex_gui_ulist_sort), TYPE_INT}, {"gui_ulist_style", P_OFFINT (hex_gui_ulist_style), TYPE_BOOL}, @@ -771,7 +770,6 @@ load_default_config(void) prefs.hex_gui_tray_blink = 1; prefs.hex_gui_ulist_count = 1; prefs.hex_gui_ulist_icons = 1; - prefs.hex_gui_ulist_resizable = 1; prefs.hex_gui_ulist_style = 1; prefs.hex_gui_win_save = 1; prefs.hex_input_flash_hilight = 1; diff --git a/src/common/hexchat.h b/src/common/hexchat.h index ec055939..2bdfb656 100644 --- a/src/common/hexchat.h +++ b/src/common/hexchat.h @@ -146,7 +146,6 @@ struct hexchatprefs unsigned int hex_gui_ulist_count; unsigned int hex_gui_ulist_hide; unsigned int hex_gui_ulist_icons; - unsigned int hex_gui_ulist_resizable; unsigned int hex_gui_ulist_show_hosts; unsigned int hex_gui_ulist_style; unsigned int hex_gui_usermenu; |