aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gncal-day-panel.h
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@nuclecu.unam.mx>1999-02-05 01:36:04 +0800
committerArturo Espinosa <unammx@src.gnome.org>1999-02-05 01:36:04 +0800
commitcaf215883e225dcc3a4f0d244dab0a61dfdf6ae8 (patch)
treed74ca114fb73885c5662feb5d9bdbff03c7cbe0e /calendar/gncal-day-panel.h
parent23e6445f8ba8f0173ac2c0f5e65985f0ffa9e2c2 (diff)
downloadgsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.gz
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.bz2
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.lz
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.xz
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.tar.zst
gsoc2013-evolution-caf215883e225dcc3a4f0d244dab0a61dfdf6ae8.zip
Make the calendar start weeks on Monday if appropriate.
1999-02-03 Federico Mena Quintero <federico@nuclecu.unam.mx> * gncal-week-view.c (gncal_week_view_new): Make the calendar start weeks on Monday if appropriate. (gncal_week_view_time_format_changed): New function to notify the week view that the time format has changed. * gncal-day-panel.c (gncal_day_panel_new): Make the calendar start weeks on Monday if appropriate. (gncal_day_panel_time_format_changed): New function to notify the day panel that the time format has changed. * gnome-cal.c (gnome_calendar_time_format_changed): Tell the day and week views that the time format has changed. svn path=/trunk/; revision=643
Diffstat (limited to 'calendar/gncal-day-panel.h')
-rw-r--r--calendar/gncal-day-panel.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/calendar/gncal-day-panel.h b/calendar/gncal-day-panel.h
index 87bce9732f..48ba6f38b1 100644
--- a/calendar/gncal-day-panel.h
+++ b/calendar/gncal-day-panel.h
@@ -49,11 +49,12 @@ struct _GncalDayPanelClass {
};
-guint gncal_day_panel_get_type (void);
-GtkWidget *gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day);
+guint gncal_day_panel_get_type (void);
+GtkWidget *gncal_day_panel_new (GnomeCalendar *calendar, time_t start_of_day);
-void gncal_day_panel_update (GncalDayPanel *dpanel, iCalObject *ico, int flags);
-void gncal_day_panel_set (GncalDayPanel *dpanel, time_t start_of_day);
+void gncal_day_panel_update (GncalDayPanel *dpanel, iCalObject *ico, int flags);
+void gncal_day_panel_set (GncalDayPanel *dpanel, time_t start_of_day);
+void gncal_day_panel_time_format_changed (GncalDayPanel *dpanel);
END_GNOME_DECLS