Monotone-Parent: e2c6d6b8cfe712b3904159b16afba1769a6ab0a4

Monotone-Revision: 1c1de9a3a363e23c7c1b6ef48bc5545eab2ac66b

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-19T15:40:22
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2007-11-19 15:40:22 +00:00
parent ec51e7a283
commit 263c62a70d
3 changed files with 17 additions and 29 deletions
+3
View File
@@ -1,5 +1,8 @@
2007-11-19 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxTaskEditor.m ([-acceptAction])
([-declineAction]): commented out unused methods.
* UI/MailPartViewers/UIxMailPartICalActions.m
([UIxMailPartICalActions -deleteFromCalendarAction]): actually
delete the found object.
+14 -14
View File
@@ -411,23 +411,23 @@
// TODO: add tentatively
- (id) acceptOrDeclineAction: (BOOL) _accept
{
[[self clientObject] changeParticipationStatus:
_accept ? @"ACCEPTED" : @"DECLINED"];
// - (id) acceptOrDeclineAction: (BOOL) _accept
// {
// [[self clientObject] changeParticipationStatus:
// _accept ? @"ACCEPTED" : @"DECLINED"];
return self;
}
// return self;
// }
- (id) acceptAction
{
return [self acceptOrDeclineAction: YES];
}
// - (id) acceptAction
// {
// return [self acceptOrDeclineAction: YES];
// }
- (id) declineAction
{
return [self acceptOrDeclineAction: NO];
}
// - (id) declineAction
// {
// return [self acceptOrDeclineAction: NO];
// }
- (id) changeStatusAction
{
-15
View File
@@ -179,11 +179,6 @@
};
};
methods = {
// delete = {
// protectedBy = "Delete Objects";
// pageName = "UIxTaskView";
// actionName = "delete";
// };
edit = {
protectedBy = "ViewAllComponent";
pageName = "UIxTaskEditor";
@@ -207,16 +202,6 @@
pageName = "UIxTaskEditor";
actionName = "changeStatus";
};
accept = {
protectedBy = "RespondToComponent";
pageName = "UIxTaskEditor";
actionName = "accept";
};
decline = {
protectedBy = "RespondToComponent";
pageName = "UIxTaskEditor";
actionName = "decline";
};
};
};
};