1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

Calendar: Implement add event UI

This commit is contained in:
rhin123 2020-04-09 17:05:01 -05:00 committed by Andreas Kling
parent 4f48fcdb94
commit 06604c3786
6 changed files with 145 additions and 20 deletions

View file

@ -26,7 +26,7 @@
#include "Calendar.h"
const String name_of_month(int month)
const String Calendar::name_of_month(int month)
{
static const String month_names[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" };
return month_names[month - 1];