summaryrefslogtreecommitdiff
path: root/apps/plugins/calendar.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/calendar.c')
-rw-r--r--apps/plugins/calendar.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/calendar.c b/apps/plugins/calendar.c
index 4d89530ca9..ded0a70d26 100644
--- a/apps/plugins/calendar.c
+++ b/apps/plugins/calendar.c
@@ -876,8 +876,11 @@ static void add_memo(struct shown *shown, int type)
876 rb->splash(HZ/2, "Event not added"); 876 rb->splash(HZ/2, "Event not added");
877} 877}
878 878
879static int edit_menu_cb(int action, const struct menu_item_ex *this_item) 879static int edit_menu_cb(int action,
880 const struct menu_item_ex *this_item,
881 struct gui_synclist *this_list)
880{ 882{
883 (void)this_list;
881 int i = (intptr_t)this_item; 884 int i = (intptr_t)this_item;
882 if (action == ACTION_REQUEST_MENUITEM 885 if (action == ACTION_REQUEST_MENUITEM
883 && memos_in_shown_memory <= 0 && (i==0 || i==1)) 886 && memos_in_shown_memory <= 0 && (i==0 || i==1))