diff options
author | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:54:24 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2007-03-10 15:54:24 +0000 |
commit | f82590c811bcff3f760063859d855865ec083a49 (patch) | |
tree | 832f413d9b32894ec68e01ef2b585b0a2d4e67e3 /src/calendar.h | |
parent | b1d02bf4ff30bc33645ae5f436afcbec6640efda (diff) | |
download | calcurse-f82590c811bcff3f760063859d855865ec083a49.zip |
global variable 'colr' suppressed
Diffstat (limited to 'src/calendar.h')
-rwxr-xr-x | src/calendar.h | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/calendar.h b/src/calendar.h index a8cb3ea..e65551f 100755 --- a/src/calendar.h +++ b/src/calendar.h @@ -1,8 +1,8 @@ -/* $calcurse: calendar.h,v 1.1 2006/07/31 21:00:02 culot Exp $ */ +/* $calcurse: calendar.h,v 1.2 2007/03/10 15:54:59 culot Exp $ */ /* * Calcurse - text-based organizer - * Copyright (c) 2004-2006 Frederic Culot + * Copyright (c) 2004-2007 Frederic Culot * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -29,13 +29,11 @@ #include <stdbool.h> -void update_cal_panel(WINDOW *cwin, int nl_cal, - int nc_cal, int sel_month, int sel_year, int sel_day, - int day, int month, int year, - bool monday_first); +void update_cal_panel(WINDOW *cwin, int nl_cal, int nc_cal, int sel_month, + int sel_year, int sel_day, int day, int month, int year, bool monday_first); int isBissextile(unsigned); long ymd_to_scalar(unsigned, unsigned, unsigned); -void goto_day(int colr, int day, int month, int year, - int *sel_day, int *sel_month, int *sel_year); +void goto_day(int day, int month, int year, int *sel_day, int *sel_month, + int *sel_year); #endif /* CALCURSE_CALENDAR_H */ |