summaryrefslogtreecommitdiff
path: root/library/backend
authorzecke <zecke>2003-02-19 14:33:49 (UTC)
committer zecke <zecke>2003-02-19 14:33:49 (UTC)
commit5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db (patch) (unidiff)
tree46fad390578dbfe31dbb09c74bec1a453214531c /library/backend
parentbd6e39ba0c38070d07c76b67a98d2e3ab3f84cb8 (diff)
downloadopie-5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db.zip
opie-5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db.tar.gz
opie-5bf8efedcb7cdbf077591cb0a9a46cbe413ad8db.tar.bz2
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
Diffstat (limited to 'library/backend') (more/less context) (ignore whitespace changes)
-rw-r--r--library/backend/event.cpp4
1 files changed, 2 insertions, 2 deletions
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 {
595*/ 595*/
596QDateTime Event::start( bool actual ) const 596QDateTime Event::start( bool actual ) const
597{ 597{
598 QDateTime dt = (startUTC > 0) ? TimeConversion::fromUTC( startUTC ) : QDateTime::currentDateTime(); 598 QDateTime dt = TimeConversion::fromUTC( startUTC );
599 599
600 if ( actual && typ == AllDay ) { 600 if ( actual && typ == AllDay ) {
601 QTime t = dt.time(); 601 QTime t = dt.time();
@@ -614,7 +614,7 @@ QDateTime Event::end() const {
614*/ 614*/
615QDateTime Event::end( bool actual ) const 615QDateTime Event::end( bool actual ) const
616{ 616{
617 QDateTime dt = (endUTC > 0) ? TimeConversion::fromUTC( endUTC ) : QDateTime::currentDateTime(); 617 QDateTime dt = TimeConversion::fromUTC( endUTC );
618 618
619 if ( actual && typ == AllDay ) { 619 if ( actual && typ == AllDay ) {
620 QTime t = dt.time(); 620 QTime t = dt.time();