# HG changeset patch # User Michael Schloh von Bennewitz # Date 1423605300 -3600 # Node ID 262b0d479a9672a604a84b55b4c4e57234d10aa0 # Parent bcc778a42b8c1f40dc7df83a6b13ca7816dd2288 Port to VAlarm class behaviour of upgraded ical4j version 1.0.6. diff -r bcc778a42b8c -r 262b0d479a96 src/org/gege/caldavsyncadapter/android/entities/AndroidEvent.java --- a/src/org/gege/caldavsyncadapter/android/entities/AndroidEvent.java Tue Feb 10 22:48:00 2015 +0100 +++ b/src/org/gege/caldavsyncadapter/android/entities/AndroidEvent.java Tue Feb 10 22:55:00 2015 +0100 @@ -556,7 +556,7 @@ // Reminders if (mReminders.size() > 0) { for (Object objComp : mReminders) { - Component com = (Component) objComp; + VAlarm com = (VAlarm) objComp; event.getAlarms().add(com); } }