diff options
author | Shakti Sen <shprasad@novell.com> | 2005-08-02 21:50:54 +0800 |
---|---|---|
committer | Shakti Prasad Sen <shaktis@src.gnome.org> | 2005-08-02 21:50:54 +0800 |
commit | 5739bae429a2743066ad644dc9d32f1d8021e6da (patch) | |
tree | 284643bdd1a55ef4013709f746240fdf1239200f /calendar/gui/e-calendar-table.c | |
parent | 90d630ecd19935e696b9279ef9d7d4c6a5486739 (diff) | |
download | gsoc2013-evolution-5739bae429a2743066ad644dc9d32f1d8021e6da.tar.gz gsoc2013-evolution-5739bae429a2743066ad644dc9d32f1d8021e6da.tar.zst gsoc2013-evolution-5739bae429a2743066ad644dc9d32f1d8021e6da.zip |
Added support for the Target selection for 'Tasks'. Resolved one undefined
2005-08-01 Shakti Sen <shprasad@novell.com>
* gui/tasks-control.c (tasks_control_sensitize_commands): Added support
for the Target selection for 'Tasks'.
* gui/e-calendar-table.c (e_calendar_table_open_selected): Resolved
one undefined symbol.
* gui/e-tasks.c: Renamed the function name from 'e_tasks_get_tasks_menu' to 'e_tasks_get_tasks_menu'
* gui/e-tasks.h: Added the declaration for 'e_tasks_get_tasks_menu'.
Thus fixes few warning messages.
* gui/e-cal-menu.c (e_cal_menu_target_new_select): Set the mask for
E_CAL_MENU_SELECT_ASSIGNABLE.
Fixes bug #231968.
svn path=/trunk/; revision=29957
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index 63408e9a29..5cf8065b30 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -589,7 +589,7 @@ e_calendar_table_open_selected (ECalendarTable *cal_table) ECalModelComponent *comp_data; icalproperty *prop; - comp_data = get_selected_comp (cal_table); + comp_data = e_calendar_table_get_selected_comp (cal_table); prop = icalcomponent_get_first_property (comp_data->icalcomp, ICAL_ATTENDEE_PROPERTY); if (comp_data != NULL) e_calendar_table_open_task (cal_table, comp_data, prop ? TRUE : FALSE); |