Monotone-Parent: 3a78dd3034bf29fe4fe7a1a3d7eacbd47941bbba

Monotone-Revision: 928e56751cbed8eace530c7a0b87df535ad79dbc

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-08-09T08:17:13
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-08-09 08:17:13 +00:00
parent 6af8f35d45
commit 1d53776649
2 changed files with 13 additions and 3 deletions
+7
View File
@@ -1,3 +1,10 @@
2008-08-09 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/MailPartViewers/UIxMailPartICalActions.m ([UIxMailPartICalActions -updateUserStatusAction])
([UIxMailPartICalActions -acceptAction])
([UIxMailPartICalActions -declineAction]): if the event doesn't
exist in the user table, declare it as new.
2008-08-07 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/LDAPUserManager.m ([LDAPUserManager
+6 -3
View File
@@ -85,9 +85,12 @@
}
if (!eventObject)
eventObject = [SOGoAppointmentObject objectWithName: uid
inContainer: personalFolder];
{
eventObject = [SOGoAppointmentObject objectWithName: uid
inContainer: personalFolder];
[eventObject setIsNew: YES];
}
return eventObject;
}