-rw-r--r-- | libkcal/event.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libkcal/event.cpp b/libkcal/event.cpp index 9b99855..7cd81fa 100644 --- a/libkcal/event.cpp +++ b/libkcal/event.cpp @@ -174,5 +174,7 @@ void Event::setDuration(int seconds) QDateTime Event::getNextAlarmDateTime( bool * ok, int * offset, QDateTime start_dt ) const { - + *ok = false; + if ( !alarmEnabled() ) + return QDateTime (); bool yes; QDateTime incidenceStart = getNextOccurence( start_dt, &yes ); |