Monotone-Parent: 24436aa1f7c157e01afd314ceccdf0d59418faa7

Monotone-Revision: 4b06d7cbf21f434e5a8fbe5186aa252705b8814e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-08-12T18:41:25
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-08-12 18:41:25 +00:00
parent efdee42eba
commit 0a7fa3a075
4 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,14 @@
2011-08-12 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreCalendarMessage.m (-save): resynchronise the
container cache after the operation.
* OpenChange/MAPIStoreTasksMessage.m (-save): resynchronise the
container cache after the operation.
* OpenChange/MAPIStoreContactsMessage.m (-save): resynchronise the
container cache after the operation.
* OpenChange/MAPIStoreGCSMessage.m (-objectVersion): ensure that a
change number is available when the message is "not new", but
resynchronise the cache in doing so.

View File

@ -45,6 +45,7 @@
#import "MAPIStoreAppointmentWrapper.h"
#import "MAPIStoreCalendarAttachment.h"
#import "MAPIStoreCalendarFolder.h"
#import "MAPIStoreContext.h"
#import "MAPIStoreRecurrenceUtils.h"
#import "MAPIStoreTypes.h"
@ -488,6 +489,7 @@
[sogoObject saveComponent: newEvent];
}
[(MAPIStoreCalendarFolder *) container synchroniseCache];
}
- (id) lookupAttachment: (NSString *) childKey

View File

@ -30,6 +30,7 @@
#import <SOGo/SOGoUserDefaults.h>
#import <Contacts/SOGoContactGCSEntry.h>
#import "MAPIStoreContactsFolder.h"
#import "MAPIStorePropertySelectors.h"
#import "MAPIStoreTypes.h"
#import "NSArray+MAPIStore.h"
@ -671,6 +672,7 @@
[element setValue: 6 to: value];
[sogoObject saveContentString: [newCard versitString]];
[(MAPIStoreContactsFolder *) container synchroniseCache];
}
@end

View File

@ -34,6 +34,7 @@
#import <SOGo/SOGoUserDefaults.h>
#import <Appointments/SOGoAppointmentObject.h>
#import "MAPIStoreTasksFolder.h"
#import "MAPIStoreTypes.h"
#import "NSDate+MAPIStore.h"
#import "NSObject+MAPIStore.h"
@ -372,6 +373,7 @@
[vToDo setTimeStampAsDate: now];
[sogoObject saveContentString: [vCalendar versitString]];
[(MAPIStoreTasksFolder *) container synchroniseCache];
}
@end