(fix) moved SOGoDirectAction from CommonUI to SOGoUI

pull/207/head
Ludovic Marcotte 2016-05-04 09:43:27 -04:00
parent 54b114712f
commit e1ced4ac65
19 changed files with 20 additions and 20 deletions

View File

@ -20,8 +20,6 @@ CommonUI_OBJC_FILES += \
\ \
UIxTopnavToolbar.m \ UIxTopnavToolbar.m \
UIxToolbar.m \ UIxToolbar.m \
\
SOGoDirectAction.m \
CommonUI_RESOURCE_FILES += \ CommonUI_RESOURCE_FILES += \
product.plist product.plist

View File

@ -30,7 +30,7 @@
@class SOGoGCSFolder; @class SOGoGCSFolder;
@class SOGoUserSettings; @class SOGoUserSettings;
#include "SOGoDirectAction.h" #include <SOGoUI/SOGoDirectAction.h>
@interface UIxFolderActions : SOGoDirectAction @interface UIxFolderActions : SOGoDirectAction
{ {

View File

@ -21,7 +21,7 @@
#ifndef UIXOBJECTACTIONS_H #ifndef UIXOBJECTACTIONS_H
#define UIXOBJECTACTIONS_H #define UIXOBJECTACTIONS_H
#include "SOGoDirectAction.h" #include <SOGoUI/SOGoDirectAction.h>
@class WOResponse; @class WOResponse;

View File

@ -21,7 +21,7 @@
#ifndef UIXPARENTFOLDERACTIONS_H #ifndef UIXPARENTFOLDERACTIONS_H
#define UIXPARENTFOLDERACTIONS_H #define UIXPARENTFOLDERACTIONS_H
#include "SOGoDirectAction.h" #include <SOGoUI/SOGoDirectAction.h>
@interface UIxParentFolderActions : SOGoDirectAction @interface UIxParentFolderActions : SOGoDirectAction
@end @end

View File

@ -28,7 +28,7 @@
#import <Contacts/SOGoContactGCSEntry.h> #import <Contacts/SOGoContactGCSEntry.h>
#import <Common/SOGoDirectAction.h> #import <SOGoUI/SOGoDirectAction.h>
@interface NGVCard (SOGoActionCategory) @interface NGVCard (SOGoActionCategory)

View File

@ -22,7 +22,7 @@
#ifndef __UIxContactsListActions_H__ #ifndef __UIxContactsListActions_H__
#define __UIxContactsListActions_H__ #define __UIxContactsListActions_H__
#import <Common/SOGoDirectAction.h> #import <SOGoUI/SOGoDirectAction.h>
@class NSDictionary; @class NSDictionary;
@class NSString; @class NSString;

View File

@ -25,7 +25,7 @@
@class SOGoMailBodyPart; @class SOGoMailBodyPart;
@class WOResponse; @class WOResponse;
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@interface UIxMailPartICalActions : SOGoDirectAction @interface UIxMailPartICalActions : SOGoDirectAction

View File

@ -21,7 +21,7 @@
#ifndef UIXMAILACCOUNTACTIONS_H #ifndef UIXMAILACCOUNTACTIONS_H
#define UIXMAILACCOUNTACTIONS_H #define UIXMAILACCOUNTACTIONS_H
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@class WOResponse; @class WOResponse;

View File

@ -21,7 +21,7 @@
#ifndef UIXMAILACTIONS_H #ifndef UIXMAILACTIONS_H
#define UIXMAILACTIONS_H #define UIXMAILACTIONS_H
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@interface UIxMailActions : SOGoDirectAction @interface UIxMailActions : SOGoDirectAction
@end @end

View File

@ -21,7 +21,7 @@
#ifndef UIXMAILFOLDERACTIONS_H #ifndef UIXMAILFOLDERACTIONS_H
#define UIXMAILFOLDERACTIONS_H #define UIXMAILFOLDERACTIONS_H
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@class WOResponse; @class WOResponse;

View File

@ -27,7 +27,7 @@
@class SOGoDateFormatter; @class SOGoDateFormatter;
@class UIxMailSizeFormatter; @class UIxMailSizeFormatter;
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@interface UIxMailListActions : SOGoDirectAction @interface UIxMailListActions : SOGoDirectAction
{ {

View File

@ -21,7 +21,7 @@
#ifndef UIXMAILSOURCEVIEW_H #ifndef UIXMAILSOURCEVIEW_H
#define UIXMAILSOURCEVIEW_H #define UIXMAILSOURCEVIEW_H
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@interface UIxMailSourceView : SOGoDirectAction @interface UIxMailSourceView : SOGoDirectAction

View File

@ -21,7 +21,7 @@
#ifndef UIXJSONPREFERENCES_H #ifndef UIXJSONPREFERENCES_H
#define UIXJSONPREFERENCES_H #define UIXJSONPREFERENCES_H
#import <UI/Common/SOGoDirectAction.h> #import <UI/SOGoUI/SOGoDirectAction.h>
@interface UIxJSONPreferences : SOGoDirectAction @interface UIxJSONPreferences : SOGoDirectAction

View File

@ -17,7 +17,8 @@ libSOGoUI_HEADER_FILES += \
\ \
UIxJSClose.h \ UIxJSClose.h \
UIxComponent.h \ UIxComponent.h \
SOGoAptFormatter.h SOGoAptFormatter.h \
SOGoDirectAction.h
libSOGoUI_OBJC_FILES += \ libSOGoUI_OBJC_FILES += \
\ \
@ -25,8 +26,9 @@ libSOGoUI_OBJC_FILES += \
UIxComponent.m \ UIxComponent.m \
UIxModuleAccessDenied.m \ UIxModuleAccessDenied.m \
SOGoAptFormatter.m \ SOGoAptFormatter.m \
SOGoACLAdvisory.m \ SOGoACLAdvisory.m \
SOGoFolderAdvisory.m SOGoFolderAdvisory.m \
SOGoDirectAction.m
# make # make

View File

@ -21,7 +21,7 @@
#ifndef UIXAPPOINTMENTACTIONS_H #ifndef UIXAPPOINTMENTACTIONS_H
#define UIXAPPOINTMENTACTIONS_H #define UIXAPPOINTMENTACTIONS_H
#import <Common/SOGoDirectAction.h> #import <SOGoUI/SOGoDirectAction.h>
@interface UIxAppointmentActions : SOGoDirectAction @interface UIxAppointmentActions : SOGoDirectAction

View File

@ -21,7 +21,7 @@
#ifndef UIXCALLISTINGACTIONVIEW_H #ifndef UIXCALLISTINGACTIONVIEW_H
#define UIXCALLISTINGACTIONVIEW_H #define UIXCALLISTINGACTIONVIEW_H
#import <Common/SOGoDirectAction.h> #import <SOGoUI/SOGoDirectAction.h>
@class NSCalendarDate; @class NSCalendarDate;
@class NSMutableDictionary; @class NSMutableDictionary;

View File

@ -21,7 +21,7 @@
#ifndef UIXCALMAINACTIONS_H #ifndef UIXCALMAINACTIONS_H
#define UIXCALMAINACTIONS_H #define UIXCALMAINACTIONS_H
#import <Common/SOGoDirectAction.h> #import <SOGoUI/SOGoDirectAction.h>
@interface UIxCalMainActions : SOGoDirectAction @interface UIxCalMainActions : SOGoDirectAction