mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-23 04:15:26 +00:00
Monotone-Parent: 2dac439fe5f55c4cac1d733aed55c059bb8ac117
Monotone-Revision: 9c2df40e34a594a328fe39db8857a2511312513d Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2010-11-19T23:01:33 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -27,7 +27,7 @@
|
||||
|
||||
#import "MAPIApplication.h"
|
||||
#import "MAPIStoreAuthenticator.h"
|
||||
#import "NSDate+MAPIStore.h"
|
||||
#import "NSCalendarDate+MAPIStore.h"
|
||||
#import "NSString+MAPIStore.h"
|
||||
#import "SOGoGCSFolder+MAPIStore.h"
|
||||
|
||||
@@ -149,4 +149,18 @@
|
||||
return rc;
|
||||
}
|
||||
|
||||
- (id) createMessageInFolder: (id) parentFolder
|
||||
{
|
||||
SOGoTaskObject *newEntry;
|
||||
NSString *name;
|
||||
|
||||
name = [NSString stringWithFormat: @"%@.ics",
|
||||
[SOGoObject globallyUniqueObjectId]];
|
||||
newEntry = [SOGoTaskObject objectWithName: name
|
||||
inContainer: parentFolder];
|
||||
[newEntry setIsNew: YES];
|
||||
|
||||
return newEntry;
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user