diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-09-01 21:43:19 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-09-01 21:43:19 +0200 |
commit | 1a102d9bff3dcde39010945a1808e529d1f2f7f1 (patch) | |
tree | bc8e2223170df579e72176a8afc9f93717432c5e /src | |
parent | 4627b05089021857d34cf94867bf0c52b35be041 (diff) |
Some more consistency for variable names
Diffstat (limited to 'src')
-rw-r--r-- | src/common/cfgfiles.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/cfgfiles.c b/src/common/cfgfiles.c index 38abca71..352c0174 100644 --- a/src/common/cfgfiles.c +++ b/src/common/cfgfiles.c @@ -580,9 +580,9 @@ const struct prefs vars[] = { {"tab_trunc", P_OFFINT (truncchans), TYPE_INT}, {"tab_utils", P_OFFINT (windows_as_tabs), TYPE_BOOL}, - {"text_auto_copy_color", P_OFFINT (autocopy_color), TYPE_BOOL}, - {"text_auto_copy_stamp", P_OFFINT (autocopy_stamp), TYPE_BOOL}, - {"text_auto_copy_text", P_OFFINT (autocopy_text), TYPE_BOOL}, + {"text_autocopy_color", P_OFFINT (autocopy_color), TYPE_BOOL}, + {"text_autocopy_stamp", P_OFFINT (autocopy_stamp), TYPE_BOOL}, + {"text_autocopy_text", P_OFFINT (autocopy_text), TYPE_BOOL}, {"text_background", P_OFFSET (background), TYPE_STR}, {"text_color_nicks", P_OFFINT (colorednicks), TYPE_BOOL}, #ifdef WIN32 |