Closed issue #48, tweaked event adding.

pull/14/head
Tim Su 17 years ago
parent 20c1d95b5c
commit c4db48e97e

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.timsu.astrid"
android:versionCode="83"
android:versionName="2.3.2">
android:versionCode="84"
android:versionName="2.3.3">
<meta-data android:name="com.a0soft.gphone.aTrackDog.webURL"
android:value="http://www.weloveastrid.com" />

@ -674,7 +674,7 @@ public class TaskEdit extends TaskModificationTabbedActivity<TaskModelForEdit> {
Long deadlineDate = null;
if(model.getPreferredDueDate() != null)
deadlineDate = model.getPreferredDueDate().getTime();
else if(model.getDefaultValues() != null)
else if(model.getDefiniteDueDate() != null)
deadlineDate = model.getDefiniteDueDate().getTime();
if(deadlineDate != null) {

@ -282,6 +282,8 @@ public class TaskController extends AbstractController {
if(repeatInfo != null)
repeatModel.repeatTaskBy(context, this, repeatInfo);
cursor.close();
Notifications.deleteAlarm(context, null, task.getTaskIdentifier().getId());
}
/** Set last notification date */

Loading…
Cancel
Save