From c787e67d9c7dd47195bca625ffdd8f14880f89aa Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 27 Jun 2009 10:02:48 -0400 Subject: [PATCH] Bug Fix - 'max' date - Changed the max date from Jan 19 2038 to Dec 31 2038. This still serves the purpose, but avoids the UTC/EST/CEST timezon problems we have seen (thanks to Federico Hernandez). --- src/report.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/report.cpp b/src/report.cpp index b6e6bbef1..b6b621453 100644 --- a/src/report.cpp +++ b/src/report.cpp @@ -1501,7 +1501,7 @@ std::string handleReportCalendar () if (getpendingdate == true) { // Find the oldest pending due date. - Date oldest (1,19,2038); + Date oldest (12,31,2037); foreach (task, tasks) { if (task->getStatus () == Task::pending)