Convert UIxComponentEditor to a SOGoDirectAction

Cleaning up unused templates.
This commit is contained in:
Francis Lachapelle
2018-05-18 12:10:10 -04:00
parent a0582c7e1e
commit 03b36e0bcd
8 changed files with 39 additions and 627 deletions
+5 -4
View File
@@ -23,6 +23,7 @@
#import <Foundation/NSValue.h>
#import <NGObjWeb/SoSecurityManager.h>
#import <NGObjWeb/WOContext+SoObjects.h>
#import <NGObjWeb/WORequest.h>
#import <NGObjWeb/WOResponse.h>
#import <NGObjWeb/NSException+HTTP.h>
@@ -56,14 +57,14 @@
@implementation UIxAppointmentEditor
- (id) init
- (id) initWithContext: (WOContext *) _context
{
SOGoUser *user;
if ((self = [super init]))
if ((self = [super initWithContext: _context]))
{
user = [[self context] activeUser];
ASSIGN (dateFormatter, [user dateFormatterInContext: context]);
user = [_context activeUser];
ASSIGN (dateFormatter, [user dateFormatterInContext: _context]);
}
return self;