mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-06-23 10:54:17 +00:00
Convert UIxComponentEditor to a SOGoDirectAction
Cleaning up unused templates.
This commit is contained in:
@@ -27,6 +27,7 @@
|
||||
#import <NGCards/NSCalendarDate+NGCards.h>
|
||||
#import <NGObjWeb/SoSecurityManager.h>
|
||||
#import <NGObjWeb/NSException+HTTP.h>
|
||||
#import <NGObjWeb/WOContext+SoObjects.h>
|
||||
#import <NGObjWeb/WORequest.h>
|
||||
#import <NGObjWeb/WOResponse.h>
|
||||
#import <NGExtensions/NSCalendarDate+misc.h>
|
||||
@@ -125,17 +126,20 @@ static NSArray *reminderValues = nil;
|
||||
[super dealloc];
|
||||
}
|
||||
|
||||
- (void) setClientObject: (id)_client
|
||||
- (id) initWithContext: (WOContext *) _context
|
||||
{
|
||||
[super setClientObject: _client]; // WOComponent+SoObjects
|
||||
if ((self = [super initWithContext: _context]))
|
||||
{
|
||||
component = [[self clientObject] occurence];
|
||||
[[component parent] retain];
|
||||
|
||||
component = [[self clientObject] occurence];
|
||||
[[component parent] retain];
|
||||
componentCalendar = [[self clientObject] container];
|
||||
if ([componentCalendar isKindOfClass: [SOGoCalendarComponent class]])
|
||||
componentCalendar = [componentCalendar container];
|
||||
[componentCalendar retain];
|
||||
}
|
||||
|
||||
componentCalendar = [[self clientObject] container];
|
||||
if ([componentCalendar isKindOfClass: [SOGoCalendarComponent class]])
|
||||
componentCalendar = [componentCalendar container];
|
||||
[componentCalendar retain];
|
||||
return self;
|
||||
}
|
||||
|
||||
- (BOOL) isChildOccurrence
|
||||
|
||||
Reference in New Issue
Block a user