mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 06:18:50 +00:00
Monotone-Parent: a1f0f7f1bc0ae64c5342d0d87ffd1ff8e7e3272c
Monotone-Revision: 4ce6162defbc430cacd1a414c9d9b8a3d7e9940e Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2011-10-28T13:10:47 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -798,7 +798,7 @@
|
||||
if (value)
|
||||
{
|
||||
NSArray *recipients;
|
||||
NSDictionary *dict, *recipientProperties;
|
||||
NSDictionary *dict;
|
||||
iCalPerson *person;
|
||||
iCalPersonPartStat newPartStat;
|
||||
NSNumber *flags, *trackStatus;
|
||||
@@ -819,9 +819,7 @@
|
||||
for (i = 0; i < [recipients count]; i++)
|
||||
{
|
||||
dict = [recipients objectAtIndex: i];
|
||||
recipientProperties = [dict objectForKey: @"properties"];
|
||||
flags = [recipientProperties
|
||||
objectForKey: MAPIPropertyKey (PR_RECIPIENT_FLAGS)];
|
||||
flags = [dict objectForKey: MAPIPropertyKey (PR_RECIPIENT_FLAGS)];
|
||||
if (!flags)
|
||||
{
|
||||
[self logWithFormat: @"no recipient flags specified"];
|
||||
@@ -837,7 +835,7 @@
|
||||
else
|
||||
{
|
||||
trackStatus
|
||||
= [recipientProperties
|
||||
= [dict
|
||||
objectForKey: MAPIPropertyKey (PR_RECIPIENT_TRACKSTATUS)];
|
||||
|
||||
/* FIXME: we should provide a data converter between OL
|
||||
|
||||
Reference in New Issue
Block a user