diff --git a/ChangeLog b/ChangeLog index 236cd0ff5..77a8f94cb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-03-05 Wolfgang Sourdeau + * SoObjects/Appointments/SOGoAppointmentFolder.m + ([SOGoAppointmentFolder + -fetchCoreInfosFrom:_startDateto:_endDatecomponent:_component]): + see below, the query is adapted consequently. + * OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor -extractQuickFieldsFromTodo:_task]): the field "ispublic" was renamed to "classification" and can any integer as value. diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index 6772e5e94..90cde0721 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -807,12 +807,13 @@ static NSNumber *sharedYes = nil; infos = [[NSArray alloc] initWithObjects: @"c_name", @"component", @"title", @"location", @"orgmail", - @"status", @"ispublic", + @"status", @"classification", @"isallday", @"isopaque", @"participants", @"partmails", @"partstates", @"sequence", @"priority", nil]; - return [self fetchFields: infos from: _startDate to: _endDate component: _component]; + return [self fetchFields: infos from: _startDate to: _endDate + component: _component]; } - (void) deleteEntriesWithIds: (NSArray *) ids