diff options
author | Frederic Culot <calcurse@culot.org> | 2007-07-20 19:18:09 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-07-20 19:18:09 +0000 |
commit | 62835f070c26a7d066e9dc6b40c0df4e15c0e91c (patch) | |
tree | 0ab4d6e81d96d28510ced3a4b7da563ecc1ec626 /src/utils.h | |
parent | e86181022dd0bfa045258774e94d7b57f474c8a3 (diff) | |
download | calcurse-62835f070c26a7d066e9dc6b40c0df4e15c0e91c.zip |
status_bar() updated to use window_t type
Diffstat (limited to 'src/utils.h')
-rwxr-xr-x | src/utils.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/utils.h b/src/utils.h index 48f7536..0549535 100755 --- a/src/utils.h +++ b/src/utils.h @@ -1,4 +1,4 @@ -/* $calcurse: utils.h,v 1.18 2007/07/01 17:50:53 culot Exp $ */ +/* $calcurse: utils.h,v 1.19 2007/07/20 19:19:56 culot Exp $ */ /* * Calcurse - text-based organizer @@ -28,6 +28,7 @@ #define CALCURSE_UTILS_H #include "calendar.h" +#include "vars.h" #define MAX(x,y) ((x)>(y)?(x):(y)) #define MIN(x,y) ((x)<(y)?(x):(y)) @@ -65,7 +66,7 @@ int updatestring(WINDOW *, char **, int, int); int is_all_digit(char *); void border_color(WINDOW *); void border_nocolor(WINDOW *); -void status_bar(int, int, int); +void status_bar(int, window_t *); long date2sec(date_t, unsigned, unsigned); char *date_sec2hour_str(long); char *date_sec2date_str(long); |