summaryrefslogtreecommitdiffstats
path: root/org/madore/damlengine/TodoItem.java
diff options
context:
space:
mode:
Diffstat (limited to 'org/madore/damlengine/TodoItem.java')
-rw-r--r--org/madore/damlengine/TodoItem.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org/madore/damlengine/TodoItem.java b/org/madore/damlengine/TodoItem.java
index d956800..e4669c9 100644
--- a/org/madore/damlengine/TodoItem.java
+++ b/org/madore/damlengine/TodoItem.java
@@ -6,11 +6,11 @@ public abstract class TodoItem {
}
public TodoDeque ownerDeque;
- public TodoContext context;
+ public Context ctx;
public Options options;
- public TodoItem(TodoContext context, Options options) {
- this.context = context;
+ public TodoItem(Context ctx, Options options) {
+ this.ctx = ctx;
this.options = options;
}