-rw-r--r-- | library/backend/event.cpp | 4 |
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 @@ -594,9 +594,9 @@ QDateTime Event::start() const { \internal */ 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(); t.setHMS( 0, 0, 0 ); @@ -613,9 +613,9 @@ QDateTime Event::end() const { \internal */ 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(); t.setHMS( 23, 59, 59 ); |