mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-11 00:08:51 +00:00
Monotone-Parent: 5edc9c687517915e7079d29e0c44330d7b0309a8
Monotone-Revision: 9ea4114fbf6afc57384f977b75fb50113bf00a63 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-07-10T14:19:02 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
2007-07-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||
|
||||
* UI/Scheduler/UIxTaskEditor.m ([UIxTaskEditor
|
||||
-takeValuesFromRequest:_rqinContext:_ctx]): explicitly set the
|
||||
start and due dates to nil if hasStartDate and hasDueDate are
|
||||
false.
|
||||
|
||||
* SoObjects/SOGo/SOGoAuthenticator.m ([SOGoAuthenticator
|
||||
-passwordInContext:context]): made method public.
|
||||
|
||||
|
||||
@@ -373,8 +373,14 @@
|
||||
|
||||
if (hasStartDate)
|
||||
[todo setStartDate: taskStartDate];
|
||||
else
|
||||
[todo setStartDate: nil];
|
||||
|
||||
if (hasDueDate)
|
||||
[todo setDue: taskDueDate];
|
||||
else
|
||||
[todo setDue: nil];
|
||||
|
||||
if ([status isEqualToString: @"COMPLETED"])
|
||||
[todo setCompleted: statusDate];
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user