Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KAlarm
Commits
1942c057
Commit
1942c057
authored
Jul 27, 2021
by
David Jarvie
Browse files
Fix events with reminder alarms not triggering
BUG:440200
parent
1b00e74c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/kaevent.cpp
View file @
1942c057
...
...
@@ -2146,7 +2146,7 @@ void KAEventPrivate::setReminder(int minutes, bool onceOnly)
--
mAlarmCount
;
}
mReminderMinutes
=
minutes
;
mReminderActive
=
minutes
?
ACTIVE_REMINDER
:
NO_REMINDER
;
mReminderActive
=
minutes
>
0
?
ACTIVE_REMINDER
:
NO_REMINDER
;
mReminderOnceOnly
=
onceOnly
;
mReminderAfterTime
=
DateTime
();
mTriggerChanged
=
true
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment