diff options
author | Frederic Culot <calcurse@culot.org> | 2009-07-12 16:21:57 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-07-12 16:21:57 +0000 |
commit | 56949550025f447691b0f32632b35af4749da358 (patch) | |
tree | b51bf757d54bfca2ed7a0bd8124f18e506c83d98 /src/utils.h | |
parent | d4d29be0fa41c079ab0a9e11585f65ff5e2828cf (diff) | |
download | calcurse-56949550025f447691b0f32632b35af4749da358.tar.gz calcurse-56949550025f447691b0f32632b35af4749da358.zip |
stdbool header removed, unsigned type used instead
Diffstat (limited to 'src/utils.h')
-rwxr-xr-x | src/utils.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils.h b/src/utils.h index 52ba6b7..59ce4c4 100755 --- a/src/utils.h +++ b/src/utils.h @@ -1,4 +1,4 @@ -/* $calcurse: utils.h,v 1.45 2009/07/05 20:33:25 culot Exp $ */ +/* $calcurse: utils.h,v 1.46 2009/07/12 16:22:02 culot Exp $ */ /* * Calcurse - text-based organizer @@ -145,12 +145,12 @@ long update_time_in_date (long, unsigned, unsigned); long get_sec_date (date_t); long min2sec (unsigned); int check_time (char *); -void draw_scrollbar (WINDOW *, int, int, int, int, int, bool); +void draw_scrollbar (WINDOW *, int, int, int, int, int, unsigned); void item_in_popup (char *, char *, char *, char *); long get_today (void); long now (void); long mystrtol (const char *); -void print_bool_option_incolor (WINDOW *, bool, int, int); +void print_bool_option_incolor (WINDOW *, unsigned, int, int); char *new_tempfile (const char *, int); void erase_note (char **, erase_flag_e); int parse_date (char *, int, int *, int *, int *); |