-rw-r--r-- | library/datebookdb.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/library/datebookdb.cpp b/library/datebookdb.cpp index 000ff71..188d8e1 100644 --- a/library/datebookdb.cpp +++ b/library/datebookdb.cpp @@ -97,2 +97,4 @@ bool nextOccurance(const Event &e, const QDate &from, QDateTime &next) + + /* there is at least one 'day', or there would be no event */ @@ -101,2 +103,3 @@ bool nextOccurance(const Event &e, const QDate &from, QDateTime &next) + dayOfWeek = dayOfWeek % 7; /* the actual day of week */ @@ -893,2 +896,9 @@ void DateBookDB::loadFile( const QString &strFile ) // "post processing" (dates, times, alarm, recurrence) + + // other half of 1169 fixlet without getting into regression + // if rp.days == 0 and rp.type == Event::Weekly + if ( rp.type == Event::Weekly && rp.days == 0 ) + rp.days = Event::day( e.start().date().dayOfWeek() ); + + // start date/time |