From 74ace73ca6a75d566bdb8b2c79b1b2e5c2036ff6 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 15 Sep 2006 22:20:25 +0000 Subject: [PATCH] Monotone-Parent: 67d95e4466d127870af881a2f0225ba6ed2e27ec Monotone-Revision: 10073479893696fc7148796331e68fe7862ddf7a Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-09-15T22:20:25 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ SoObjects/Contacts/SOGoContactGCSEntry.m | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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 */