From 09f9b9e625bac6d14e3134bc90bbef79dd84b295 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 14 May 2018 01:12:19 -0400 Subject: [PATCH] Build: Fixed missed context reference --- src/recur.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/recur.cpp b/src/recur.cpp index 95445a462..f50d51ed8 100644 --- a/src/recur.cpp +++ b/src/recur.cpp @@ -139,8 +139,8 @@ void handleRecurrence () Datetime (t.get_date ("until")) < now) { t.setStatus (Task::deleted); - context.tdb2.modify(t); - context.footnote (onExpiration (t)); + Context::getContext ().tdb2.modify(t); + Context::getContext ().footnote (onExpiration (t)); } } }