aboutsummaryrefslogtreecommitdiffstats
path: root/src/day.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/day.c')
-rw-r--r--src/day.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/day.c b/src/day.c
index 23aa757..bc40d77 100644
--- a/src/day.c
+++ b/src/day.c
@@ -1154,3 +1154,18 @@ void day_pipe_item(void)
}
wins_unprepare_external();
}
+
+/* Switch notification state for an item. */
+void day_item_switch_notify(void)
+{
+ struct day_item *p = day_get_item(apoint_hilt());
+
+ switch (p->type) {
+ case RECUR_APPT:
+ recur_apoint_switch_notify(p->item.rapt);
+ break;
+ case APPT:
+ apoint_switch_notify(p->item.apt);
+ break;
+ }
+}