diff options
-rw-r--r-- | calendar/ChangeLog | 5 | ||||
-rw-r--r-- | calendar/gui/control-factory.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index ceef0eb659..296d9d1b07 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,8 @@ +2004-03-31 Sarfraaz Ahmed <asarfraaz@novell.com> + + * gui/config-control.c (set_prop) : Replaced add_event_source + with add_source and passed the VEVENT type as argument. + 2004-03-30 William Jon McCann <mccann@jhu.edu> * gui/dialogs/calendar-setup.glade: diff --git a/calendar/gui/control-factory.c b/calendar/gui/control-factory.c index f19acb0b4d..ac04829ee9 100644 --- a/calendar/gui/control-factory.c +++ b/calendar/gui/control-factory.c @@ -134,7 +134,7 @@ set_prop (BonoboPropertyBag *bag, source = e_source_new ("", ""); e_source_set_group (source, group); - if (gnome_calendar_add_event_source (gcal, source)) { + if (gnome_calendar_add_source (gcal, E_CAL_SOURCE_TYPE_EVENT, source)) { calendar_control_sensitize_calendar_commands (control, gcal, TRUE); } else { char *msg; |