From 5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db Mon Sep 17 00:00:00 2001 From: zecke Date: Wed, 19 Feb 2003 14:33:49 +0000 Subject: time_t a long in our case may be < 0 This unfscks birthdays which occur in 1944 and other prior to starting of unix time --- (limited to 'library/backend/event.cpp') diff --git a/library/backend/event.cpp b/library/backend/event.cpp index eb238a4..0003fe9 100644 --- a/library/backend/event.cpp +++ b/library/backend/event.cpp @@ -595,7 +595,7 @@ QDateTime Event::start() const { */ QDateTime Event::start( bool actual ) const { - QDateTime dt = (startUTC > 0) ? TimeConversion::fromUTC( startUTC ) : QDateTime::currentDateTime(); + QDateTime dt = TimeConversion::fromUTC( startUTC ); if ( actual && typ == AllDay ) { QTime t = dt.time(); @@ -614,7 +614,7 @@ QDateTime Event::end() const { */ QDateTime Event::end( bool actual ) const { - QDateTime dt = (endUTC > 0) ? TimeConversion::fromUTC( endUTC ) : QDateTime::currentDateTime(); + QDateTime dt = TimeConversion::fromUTC( endUTC ); if ( actual && typ == AllDay ) { QTime t = dt.time(); -- cgit v0.9.0.2