aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gnome-cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gnome-cal.c')
-rw-r--r--calendar/gnome-cal.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/calendar/gnome-cal.c b/calendar/gnome-cal.c
index cf9dbefcc7..9f34a6277a 100644
--- a/calendar/gnome-cal.c
+++ b/calendar/gnome-cal.c
@@ -440,3 +440,15 @@ gnome_calendar_time_format_changed (GnomeCalendar *gcal)
month_view_time_format_changed (MONTH_VIEW (gcal->month_view));
year_view_time_format_changed (YEAR_VIEW (gcal->year_view));
}
+
+void
+gnome_calendar_colors_changed (GnomeCalendar *gcal)
+{
+ g_return_if_fail (gcal != NULL);
+ g_return_if_fail (GNOME_IS_CALENDAR (gcal));
+
+ /* FIXME: add day and week view when they are done */
+
+ month_view_colors_changed (MONTH_VIEW (gcal->month_view));
+ year_view_colors_changed (YEAR_VIEW (gcal->year_view));
+}