From 3e84074ae55bc93faad0b708aa0dd6fd0f09ade9 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 6 Oct 2011 12:06:31 +0200 Subject: Make events start on 00:00 (12:00 a.m.) There is absolutely no reason to make events start on noon, 12:00. Switching to 00:00 seems totally reasonable here, and makes event handling a bit easier, also. Signed-off-by: Lukas Fleischer --- src/recur.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/recur.c') diff --git a/src/recur.c b/src/recur.c index 0415257..de2efff 100644 --- a/src/recur.c +++ b/src/recur.c @@ -425,7 +425,7 @@ recur_event_scan (FILE *f, struct tm start, int id, char type, int freq, { *nl = '\0'; } - start.tm_hour = until.tm_hour = 12; + start.tm_hour = until.tm_hour = 0; start.tm_min = until.tm_min = 0; start.tm_sec = until.tm_sec = 0; start.tm_isdst = until.tm_isdst = -1; @@ -988,7 +988,7 @@ recur_exc_scan (llist_t *lexc, FILE *data_file) { EXIT (_("syntax error in item date")); } - day.tm_hour = 12; + day.tm_hour = 0; day.tm_min = day.tm_sec = 0; day.tm_isdst = -1; day.tm_year -= 1900; @@ -1089,7 +1089,7 @@ recur_event_paste_item (void) long new_start, time_shift; llist_item_t *i; - new_start = date2sec (*calendar_get_slctd_day (), 12, 0); + new_start = date2sec (*calendar_get_slctd_day (), 0, 0); time_shift = new_start - bkp_cut_recur_event.day; bkp_cut_recur_event.day += time_shift; -- cgit v1.2.3-54-g00ecf