diff options
author | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-02-15 14:35:46 +0800 |
---|---|---|
committer | Srinivasa Ragavan <sragavan@src.gnome.org> | 2006-02-15 14:35:46 +0800 |
commit | 8e7d2c28e9efa91be8c45a8be7dbd51ae3e56e56 (patch) | |
tree | 309661676364beff8265d7525cbac1b6ae4e4a2b | |
parent | 32ad6c08a1ebc3da6acd1a5e53df39121613888a (diff) | |
download | gsoc2013-evolution-8e7d2c28e9efa91be8c45a8be7dbd51ae3e56e56.tar.gz gsoc2013-evolution-8e7d2c28e9efa91be8c45a8be7dbd51ae3e56e56.tar.zst gsoc2013-evolution-8e7d2c28e9efa91be8c45a8be7dbd51ae3e56e56.zip |
Committed Rajeev's patch.
svn path=/trunk/; revision=31526
-rw-r--r-- | calendar/ChangeLog | 7 | ||||
-rw-r--r-- | calendar/gui/tasks-control.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 96f59f47a6..4428f349db 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,12 @@ 2006-02-14 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> + **Fixes #330374 + + * gui/tasks-control.c: (tasks_control_complete_cmd): Added code + to disable Edit->Mark as complete for completed events. + +2006-02-14 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> + **Fixes #326477 * gui/dialogs/task-page.glade: Changed size of the new task popup diff --git a/calendar/gui/tasks-control.c b/calendar/gui/tasks-control.c index bca8070eb7..4d4a2a9f08 100644 --- a/calendar/gui/tasks-control.c +++ b/calendar/gui/tasks-control.c @@ -413,6 +413,9 @@ tasks_control_complete_cmd (BonoboUIComponent *uic, { ETasks *tasks; + bonobo_ui_component_set_prop (uic, "/commands/TasksMarkComplete", "sensitive", + "0", + NULL); tasks = E_TASKS (data); e_tasks_complete_selected (tasks); } |