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:
Wolfgang Sourdeau
2010-11-19 23:01:33 +00:00
parent 3a98269e8e
commit 8b92013a2d
4 changed files with 259 additions and 1 deletions
+15 -1
View File
@@ -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