mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-15 16:35:35 +00:00
Monotone-Parent: e1689f21ae9391a98de28b07ee195a3a85688a85
Monotone-Revision: 187ef5414dadc22f5e049aad96bb6207fee6d226 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-09-23T15:36:49 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -49,7 +49,6 @@
|
||||
#import "MAPIStoreContext.h"
|
||||
#import "MAPIStoreDraftsMessage.h"
|
||||
#import "MAPIStoreFAIMessage.h"
|
||||
#import "MAPIStoreMailMessage.h"
|
||||
#import "MAPIStoreMailMessageTable.h"
|
||||
#import "MAPIStoreMapping.h"
|
||||
#import "MAPIStoreTypes.h"
|
||||
@@ -64,8 +63,6 @@
|
||||
|
||||
#import "MAPIStoreMailFolder.h"
|
||||
|
||||
static Class MAPIStoreDraftsMessageK;
|
||||
static Class MAPIStoreMailMessageK;
|
||||
static Class SOGoMailFolderK;
|
||||
|
||||
#undef DEBUG
|
||||
@@ -77,7 +74,6 @@ static Class SOGoMailFolderK;
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
MAPIStoreMailMessageK = [MAPIStoreMailMessage class];
|
||||
SOGoMailFolderK = [SOGoMailFolder class];
|
||||
[MAPIStoreAppointmentWrapper class];
|
||||
}
|
||||
@@ -171,11 +167,6 @@ static Class SOGoMailFolderK;
|
||||
return [MAPIStoreMailMessageTable tableForContainer: self];
|
||||
}
|
||||
|
||||
- (Class) messageClass
|
||||
{
|
||||
return MAPIStoreMailMessageK;
|
||||
}
|
||||
|
||||
- (NSString *) createFolder: (struct SRow *) aRow
|
||||
withFID: (uint64_t) newFID
|
||||
inContainer: (id) subfolderParent
|
||||
@@ -1125,11 +1116,6 @@ _parseCOPYUID (NSString *line, NSArray **destUIDsP)
|
||||
return [accountFolder draftsFolderInContext: woContext];
|
||||
}
|
||||
|
||||
- (Class) messageClass
|
||||
{
|
||||
return MAPIStoreDraftsMessageK;
|
||||
}
|
||||
|
||||
- (MAPIStoreMessage *) createMessage
|
||||
{
|
||||
MAPIStoreDraftsMessage *newMessage;
|
||||
@@ -1161,22 +1147,12 @@ _parseCOPYUID (NSString *line, NSArray **destUIDsP)
|
||||
//
|
||||
@implementation MAPIStoreOutboxFolder : MAPIStoreMailFolder
|
||||
|
||||
+ (void) initialize
|
||||
{
|
||||
MAPIStoreDraftsMessageK = [MAPIStoreDraftsMessage class];
|
||||
}
|
||||
|
||||
- (SOGoMailFolder *) specialFolderFromAccount: (SOGoMailAccount *) accountFolder
|
||||
inContext: (WOContext *) woContext
|
||||
{
|
||||
return [accountFolder draftsFolderInContext: woContext];
|
||||
}
|
||||
|
||||
- (Class) messageClass
|
||||
{
|
||||
return MAPIStoreDraftsMessageK;
|
||||
}
|
||||
|
||||
- (MAPIStoreMessage *) createMessage
|
||||
{
|
||||
MAPIStoreDraftsMessage *newMessage;
|
||||
|
||||
Reference in New Issue
Block a user