aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/ChangeLog
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2003-07-25 00:02:54 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2003-07-25 00:02:54 +0800
commitef14a8c5a5049749c22e991da83225e04ab1df02 (patch)
treea76532e1afce69c22142cb1ff4807f9230d5b0bd /calendar/ChangeLog
parent3f060f07b401bad248daab957bbc79a6d21afb6c (diff)
downloadgsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.tar
gsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.tar.gz
gsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.tar.bz2
gsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.tar.lz
gsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.tar.xz
gsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.tar.zst
gsoc2013-evolution-ef14a8c5a5049749c22e991da83225e04ab1df02.zip
new function. (e_cal_view_get_timezone, e_cal_view_set_timezone): new
2003-07-24 Rodrigo Moya <rodrigo@ximian.com> * gui/e-cal-view.[ch] (e_cal_view_delete_selected_occurrence): new function. (e_cal_view_get_timezone, e_cal_view_set_timezone): new functions. (e_cal_view_class_init): added new class' signal. * gui/e-week-view.[ch] (e_week_view_delete_occurrence, e_week_view_delete_occurrence_internal): removed. (e_week_view_get_timezone): removed. (e_week_view_set_timezone): renamed to timezone_changed_cb, as the callback for timezone changes in the parent ECalView. (e_week_view_on_button_press): call gnome_calendar_new_appointment instead of the non-existant e_week_view_new_appointment. * gui/e-day-view.[ch] (e_day_view_delete_occurrence, e_day_view_delete_occurrence_internal): removed. (e_day_view_get_timezone): removed. (e_day_view_set_timezone): renamed to timezone_changed_cb, as the callback for timezone changes in the parent ECalView. * gui/gnome-cal.c (gnome_calendar_delete_selected_occurrence): made it call e_cal_view_delete_selected_occurrence. (gnome_calendar_update_config_settings): call the generic e_cal_view_set_timezone on all view widgets. * gui/e-day-view-top-item.c: * gui/e-week-view-main-item.c: * gui/e-day-view-main-item.c: removed mentions to non-existant structure fields. svn path=/trunk/; revision=21948
Diffstat (limited to 'calendar/ChangeLog')
-rw-r--r--calendar/ChangeLog31
1 files changed, 31 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 1a3465079d..72b1ff8cf0 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,36 @@
2003-07-24 Rodrigo Moya <rodrigo@ximian.com>
+ * gui/e-cal-view.[ch] (e_cal_view_delete_selected_occurrence):
+ new function.
+ (e_cal_view_get_timezone, e_cal_view_set_timezone): new functions.
+ (e_cal_view_class_init): added new class' signal.
+
+ * gui/e-week-view.[ch] (e_week_view_delete_occurrence,
+ e_week_view_delete_occurrence_internal): removed.
+ (e_week_view_get_timezone): removed.
+ (e_week_view_set_timezone): renamed to timezone_changed_cb, as
+ the callback for timezone changes in the parent ECalView.
+ (e_week_view_on_button_press): call gnome_calendar_new_appointment
+ instead of the non-existant e_week_view_new_appointment.
+
+ * gui/e-day-view.[ch] (e_day_view_delete_occurrence,
+ e_day_view_delete_occurrence_internal): removed.
+ (e_day_view_get_timezone): removed.
+ (e_day_view_set_timezone): renamed to timezone_changed_cb, as
+ the callback for timezone changes in the parent ECalView.
+
+ * gui/gnome-cal.c (gnome_calendar_delete_selected_occurrence):
+ made it call e_cal_view_delete_selected_occurrence.
+ (gnome_calendar_update_config_settings): call the generic
+ e_cal_view_set_timezone on all view widgets.
+
+ * gui/e-day-view-top-item.c:
+ * gui/e-week-view-main-item.c:
+ * gui/e-day-view-main-item.c: removed mentions to non-existant
+ structure fields.
+
+2003-07-24 Rodrigo Moya <rodrigo@ximian.com>
+
* gui/e-cal-view.h: define ECalViewEvent as the base struct for
the other views.