From ad0347d16bfd10f5f6b0783d7030cac420c4362a Mon Sep 17 00:00:00 2001 From: Arturo Espinosa Date: Fri, 17 Apr 1998 05:08:55 +0000 Subject: Remove deadly excessive abuse of encapsulation -mig svn path=/trunk/; revision=147 --- calendar/gui/calendar.c | 4 +--- calendar/gui/calendar.h | 2 -- calendar/gui/eventedit.c | 4 ++-- calendar/gui/gncal-full-day.c | 5 ++--- 4 files changed, 5 insertions(+), 10 deletions(-) (limited to 'calendar/gui') diff --git a/calendar/gui/calendar.c b/calendar/gui/calendar.c index 8ad0208ac5..7b5f50c46f 100644 --- a/calendar/gui/calendar.c +++ b/calendar/gui/calendar.c @@ -32,7 +32,6 @@ calendar_new (char *title) void calendar_add_object (Calendar *cal, iCalObject *obj) { - printf ("Adding object\n"); switch (obj->type){ case ICAL_EVENT: cal->events = g_list_prepend (cal->events, obj); @@ -117,8 +116,7 @@ calendar_iterate_on_objects (GList *objects, time_t start, time_t end, calendarf for (; objects; objects = objects->next){ iCalObject *object = objects->data; - if ((start <= object->dtstart) && (object->dtend <= end)) - (*cb)(object, object->dtstart, object->dtend, closure); + ical_object_generate_events (object, start, end, cb, closure); } } diff --git a/calendar/gui/calendar.h b/calendar/gui/calendar.h index 95c92e7fa8..9fbb6088a4 100644 --- a/calendar/gui/calendar.h +++ b/calendar/gui/calendar.h @@ -37,8 +37,6 @@ typedef struct { iCalObject *ico; } CalendarObject; -typedef void (*calendarfn)(iCalObject *obj, time_t start, time_t end, void *closure); - Calendar *calendar_new (char *title); void calendar_load (Calendar *cal, char *fname); void calendar_add_object (Calendar *cal, iCalObject *obj); diff --git a/calendar/gui/eventedit.c b/calendar/gui/eventedit.c index be308284aa..ff36d77507 100644 --- a/calendar/gui/eventedit.c +++ b/calendar/gui/eventedit.c @@ -971,7 +971,7 @@ event_editor_destroy (GtkObject *object) ee = EVENT_EDITOR (object); if (ee->ical) - ical_object_set_user_data (ee->ical, NULL); /* we are no longer editing it */ + ee->ical->user_data = NULL;/* we are no longer editing it */ } GtkWidget * @@ -991,7 +991,7 @@ event_editor_new (GnomeCalendar *gcal, iCalObject *ical) ical->new = 1; } - ical_object_set_user_data (ical, ee); /* so that the world can know we are editing it */ + ical->user_data = ee; /* so that the world can know we are editing it */ ee->ical = ical; ee->gnome_cal = gcal; diff --git a/calendar/gui/gncal-full-day.c b/calendar/gui/gncal-full-day.c index 028e3657b7..b048ba9de7 100644 --- a/calendar/gui/gncal-full-day.c +++ b/calendar/gui/gncal-full-day.c @@ -110,7 +110,7 @@ static void range_activated (GncalFullDay *fullday); static GtkContainerClass *parent_class; -static fullday_signals[LAST_SIGNAL] = { 0 }; +static int fullday_signals[LAST_SIGNAL] = { 0 }; static void @@ -390,7 +390,7 @@ child_popup_menu (GncalFullDay *fullday, Child *child, guint32 event_time) child_items[1].data = child; child_items[3].data = fullday; - sensitive = (ical_object_get_user_data (child->ico) == NULL); + sensitive = (child->ico->user_data == NULL); child_items[0].sensitive = sensitive; child_items[1].sensitive = sensitive; @@ -1892,7 +1892,6 @@ void gncal_full_day_update (GncalFullDay *fullday, iCalObject *ico, int flags) { GList *children; - GList *l_events, *events; Child *child; g_return_if_fail (fullday != NULL); -- cgit v1.2.3