Summary: | Recurring event takes wrong monthly day and can't to be changed | ||
---|---|---|---|
Product: | [Applications] korganizer | Reporter: | Ilpo Kantonen <ilpo> |
Component: | general | Assignee: | Reinhold Kainhofer <reinhold> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | kde |
Priority: | NOR | ||
Version: | 3.4 | ||
Target Milestone: | --- | ||
Platform: | RedHat Enterprise Linux | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
Ilpo Kantonen
2005-04-02 03:07:14 UTC
CVS commit by kainhofe: Fix stupid mistake (decreased the index to correct for 0-based indices, instead of increasing it). BUG:103045 M +1 -1 koeditorrecurrence.cpp 1.83 --- kdepim/korganizer/koeditorrecurrence.cpp #1.82:1.83 @@ -377,5 +377,5 @@ int RecurMonthly::day() int day = mByDayCombo->currentItem(); if ( day >= 31 ) day = 31-day-1; - else --day; + else ++day; return day; } CVS commit by kainhofe: Backport of fix for bug 103045 to the KDE_3_4_BRANCH. CCBUGS:103045 M +1 -1 koeditorrecurrence.cpp 1.82.2.1 --- kdepim/korganizer/koeditorrecurrence.cpp #1.82:1.82.2.1 @@ -377,5 +377,5 @@ int RecurMonthly::day() int day = mByDayCombo->currentItem(); if ( day >= 31 ) day = 31-day-1; - else --day; + else ++day; return day; } *** Bug 103160 has been marked as a duplicate of this bug. *** |