diff options
author | Roy Marples <roy@marples.name> | 2007-09-28 12:29:23 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-09-28 12:29:23 +0000 |
commit | 6f7f447978025c9d49a0d2a0a5a6a29384ba80c8 (patch) | |
tree | 8efb8c146d53799bee35d6cb3acf62c25abdc40d /src/einfo.h | |
parent | e89c2c5d60ad97f60e6dfecabc39acef8bc03525 (diff) |
enums are now fixed to specific values and are in UPPER CASE.
Diffstat (limited to 'src/einfo.h')
-rw-r--r-- | src/einfo.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/einfo.h b/src/einfo.h index 9c9bc7a3..f9769af5 100644 --- a/src/einfo.h +++ b/src/einfo.h @@ -25,12 +25,12 @@ /*! @brief Color types to use */ typedef enum { - ecolor_good, - ecolor_warn, - ecolor_bad, - ecolor_hilite, - ecolor_bracket, - ecolor_normal + ECOLOR_NORMAL = 1, + ECOLOR_GOOD = 2, + ECOLOR_WARN = 3, + ECOLOR_BAD = 4, + ECOLOR_HILITE = 5, + ECOLOR_BRACKET = 6 } einfo_color_t; /*! @brief Returns the ASCII code for the color */ |