Monotone-Parent: 0274436d9ec9782dc91d65ff2c4760f006d2ca04

Monotone-Revision: 64ba2e93f125a52eecebddb59943e772948d3477

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-06-06T21:58:51
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2011-06-06 21:58:51 +00:00
parent 795e1ad398
commit fbdde21ec0
1 changed files with 10 additions and 3 deletions

View File

@ -32,6 +32,7 @@
#import "NSData+MAPIStore.h"
#import "NSString+MAPIStore.h"
#import "MAPIStoreContext.h"
#import "MAPIStoreObject.h"
#import "MAPIStoreTable.h"
@ -826,6 +827,9 @@ static Class NSDataK, NSStringK;
NSArray *list;
NSString *childName;
struct mapistore_table_notification_parameters notif_parameters;
struct mapistore_context *mstoreCtx;
mstoreCtx = [[container context] connectionInfo]->mstore_ctx;
notif_parameters.table_type = tableType;
notif_parameters.handle = handleId;
@ -847,7 +851,8 @@ static Class NSDataK, NSStringK;
if (newChildRow != NSNotFound)
{
notif_parameters.row_id = newChildRow;
mapistore_push_notification (MAPISTORE_TABLE,
mapistore_push_notification (mstoreCtx,
MAPISTORE_TABLE,
MAPISTORE_OBJECT_CREATED,
&notif_parameters);
}
@ -855,14 +860,16 @@ static Class NSDataK, NSStringK;
else
{
if (newChildRow == NSNotFound)
mapistore_push_notification (MAPISTORE_TABLE,
mapistore_push_notification (mstoreCtx,
MAPISTORE_TABLE,
MAPISTORE_OBJECT_DELETED,
&notif_parameters);
else
{
/* the fact that the row order has changed has no impact here */
notif_parameters.row_id = newChildRow;
mapistore_push_notification (MAPISTORE_TABLE,
mapistore_push_notification (mstoreCtx,
MAPISTORE_TABLE,
MAPISTORE_OBJECT_MODIFIED,
&notif_parameters);
}