Summary: | Dialog box for editing or deleting appointment does not catch "Yes"/No | ||
---|---|---|---|
Product: | [Applications] korganizer | Reporter: | John Tseng <jtseng> |
Component: | general | Assignee: | Reinhold Kainhofer <reinhold> |
Status: | RESOLVED FIXED | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
John Tseng
2006-05-23 00:15:20 UTC
This error exists in the 3.5.2 el3.i386 kde-redhat rpms as well as from a 'konstruct' build. replacing return ( rc == KMessageBox::Continue ); with return ( rc == KMessageBox::Yes ); Seems to fix this bug. Thanks, but you're *just* too late to have this fixed in KDE 3.5.3. I'll commit it this week, which means KDE 3.5.4 will have it. SVN commit 548388 by bram: Patch from John Tseng, fixing bug 127859 (Dialog box for editing or deleting appointment does not catch "Yes"/No). BUG:127859 M +1 -1 kogroupware.cpp --- branches/KDE/3.5/kdepim/korganizer/kogroupware.cpp #548387:548388 @@ -263,7 +263,7 @@ "with the organizers calendar. Do you really want " "to edit it?" ); rc = KMessageBox::warningYesNo( parent, txt ); - return ( rc == KMessageBox::Continue ); + return ( rc == KMessageBox::Yes ); } } else { kdWarning(5850) << "Groupware messages for Journals are not implemented yet!" << endl; John, I didn't realize I patched it differently, I hope you don't bother. |