diff --git a/src/com/timsu/astrid/data/task/TaskController.java b/src/com/timsu/astrid/data/task/TaskController.java index 6f20c301f..5008da136 100644 --- a/src/com/timsu/astrid/data/task/TaskController.java +++ b/src/com/timsu/astrid/data/task/TaskController.java @@ -402,7 +402,7 @@ public class TaskController extends AbstractController { /** Returns a TaskModelForReminder corresponding to the given TaskIdentifier */ public TaskModelForReminder fetchTaskForReminder(TaskIdentifier taskId) throws SQLException { - Cursor cursor = fetchTaskCursor(taskId, TaskModelForList.FIELD_LIST); + Cursor cursor = fetchTaskCursor(taskId, TaskModelForReminder.FIELD_LIST); TaskModelForReminder model = new TaskModelForReminder(cursor); cursor.close(); return model;