diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-17 13:08:55 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-04-17 13:08:55 +0800 |
commit | ad0347d16bfd10f5f6b0783d7030cac420c4362a (patch) | |
tree | 4b0a09d1b133334ce8fee945e8442417ed1268b5 /calendar/eventedit.c | |
parent | 541c3a7a73e084b5ebd82aae7c3fc1f3ba4f0b72 (diff) | |
download | gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.gz gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.bz2 gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.lz gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.xz gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.tar.zst gsoc2013-evolution-ad0347d16bfd10f5f6b0783d7030cac420c4362a.zip |
Remove deadly excessive abuse of encapsulation -mig
svn path=/trunk/; revision=147
Diffstat (limited to 'calendar/eventedit.c')
-rw-r--r-- | calendar/eventedit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/eventedit.c b/calendar/eventedit.c index be308284aa..ff36d77507 100644 --- a/calendar/eventedit.c +++ b/calendar/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; |