diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2003-07-25 00:02:54 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2003-07-25 00:02:54 +0800 |
commit | ef14a8c5a5049749c22e991da83225e04ab1df02 (patch) | |
tree | a76532e1afce69c22142cb1ff4807f9230d5b0bd /calendar/gui/e-week-view.h | |
parent | 3f060f07b401bad248daab957bbc79a6d21afb6c (diff) | |
download | gsoc2013-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/gui/e-week-view.h')
-rw-r--r-- | calendar/gui/e-week-view.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/calendar/gui/e-week-view.h b/calendar/gui/e-week-view.h index c879797edd..c12ad0cfca 100644 --- a/calendar/gui/e-week-view.h +++ b/calendar/gui/e-week-view.h @@ -193,9 +193,6 @@ struct _EWeekView /* The start of each day displayed. */ time_t day_starts[E_WEEK_VIEW_MAX_WEEKS * 7 + 1]; - /* The timezone. */ - icaltimezone *zone; - /* The base date, where the adjustment value is 0. */ GDate base_date; @@ -396,11 +393,6 @@ gboolean e_week_view_get_24_hour_format (EWeekView *week_view); void e_week_view_set_24_hour_format (EWeekView *week_view, gboolean use_24_hour); -/* The current timezone. */ -icaltimezone* e_week_view_get_timezone (EWeekView *week_view); -void e_week_view_set_timezone (EWeekView *week_view, - icaltimezone *zone); - void e_week_view_delete_occurrence (EWeekView *week_view); /* Returns the number of selected events (0 or 1 at present). */ |