diff --git a/ChangeLog b/ChangeLog index 72880f925..a863d47a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-15 Wolfgang Sourdeau + + * SoObjects/Contacts/SOGoContactGCSEntry.m ([SOGoContactGCSEntry + -save]): made method void. + 2006-09-13 Wolfgang Sourdeau * UI/Contacts/UIxContactView.m: added many wrapper methods to diff --git a/SoObjects/Contacts/SOGoContactGCSEntry.m b/SoObjects/Contacts/SOGoContactGCSEntry.m index 13a8541f7..072acacc8 100644 --- a/SoObjects/Contacts/SOGoContactGCSEntry.m +++ b/SoObjects/Contacts/SOGoContactGCSEntry.m @@ -82,13 +82,13 @@ /* specialized actions */ -- (NSException *) save +- (void) save { NGVCard *vcard; vcard = [self vCard]; - return [self saveContentString: [vcard versitString]]; + [self saveContentString: [vcard versitString]]; } /* message type */