mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-25 23:09:29 +00:00
Monotone-Parent: 7b44f54acaa78763162cefc160fada0303ee1d95
Monotone-Revision: 6a217855934fc04c26a67eb172cd3e529da227b3 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2008-08-05T14:16:42 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2008-08-05 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/Contacts/UIxContactEditor.m ([UIxContactEditor -isNew]):
|
||||
invoke "isNew" to the client object only if it is an instance of
|
||||
SOGoContentObject...
|
||||
|
||||
2008-08-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* SoObjects/Appointments/SOGoCalendarComponent.m
|
||||
|
||||
@@ -159,7 +159,12 @@
|
||||
|
||||
- (BOOL) isNew
|
||||
{
|
||||
return [[self clientObject] isNew];
|
||||
id co;
|
||||
|
||||
co = [self clientObject];
|
||||
|
||||
return ([co isKindOfClass: [SOGoContentObject class]]
|
||||
&& [co isNew]);
|
||||
}
|
||||
|
||||
- (NSArray *) addressBooksList
|
||||
|
||||
Reference in New Issue
Block a user