fixed #18, set default reminder to At start

This commit is contained in:
tibbi 2016-08-21 13:49:40 +02:00
parent a32a1c71e5
commit 4cf07a8f3b
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ public class Event implements Serializable {
mEndTS = 0;
mTitle = "";
mDescription = "";
mReminderMinutes = -1;
mReminderMinutes = 0;
}
public Event(int id, int startTS, int endTS, String title, String description, int reminerMinutes) {