diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-06-07 23:41:17 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-06-07 23:41:17 +0100 |
commit | bb5ce5686638a490d21884c0d0abb7d9ced68a29 (patch) | |
tree | 5c44de1bf4653b92ca6d2750175e3ac9cc34c7a5 /set.h | |
parent | aa88e500329f2d9bbdb4915c6d46e7078353a879 (diff) |
s/ACC_SET_NOSAVE/SET_NOSAVE/.
Diffstat (limited to 'set.h')
-rw-r--r-- | set.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -44,11 +44,11 @@ extern char *SET_INVALID; typedef enum { - SET_NOSAVE = 0x0001, - SET_NULL_OK = 0x0100, - SET_HIDDEN = 0x0200, - SET_PASSWORD = 0x0400, - SET_HIDDEN_DEFAULT = 0x0800, + SET_NOSAVE = 0x0001, /* Don't save this setting (i.e. stored elsewhere). */ + SET_NULL_OK = 0x0100, /* set->value == NULL is allowed. */ + SET_HIDDEN = 0x0200, /* Don't show up in setting lists. Mostly for internal storage. */ + SET_PASSWORD = 0x0400, /* Value shows up in settings list as "********". */ + SET_HIDDEN_DEFAULT = 0x0800, /* Hide unless changed from default. */ } set_flags_t; typedef struct set |