diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-12-27 01:25:48 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-12-27 01:25:48 +0800 |
commit | 6a074300e533a82fb1a09b470724e54b155f8cd5 (patch) | |
tree | b10a21d175d0d3b89610c00ce9dd390d3ac0f730 /modules/calendar/e-task-shell-view.c | |
parent | bd31f49bac99f21656dc7d0352d5b3f7385f71b2 (diff) | |
download | gsoc2013-evolution-6a074300e533a82fb1a09b470724e54b155f8cd5.tar.gz gsoc2013-evolution-6a074300e533a82fb1a09b470724e54b155f8cd5.tar.zst gsoc2013-evolution-6a074300e533a82fb1a09b470724e54b155f8cd5.zip |
Rename ECalendarTable to ETaskTable.
Since ECalendarTable was only used for tasks anyway, and ETaskTable
pairs nicely with EMemoTable.
Diffstat (limited to 'modules/calendar/e-task-shell-view.c')
-rw-r--r-- | modules/calendar/e-task-shell-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/calendar/e-task-shell-view.c b/modules/calendar/e-task-shell-view.c index 07fb12e369..42fa4dd9d0 100644 --- a/modules/calendar/e-task-shell-view.c +++ b/modules/calendar/e-task-shell-view.c @@ -100,7 +100,7 @@ task_shell_view_execute_search (EShellView *shell_view) EActionComboBox *combo_box; GtkRadioAction *action; ECalComponentPreview *task_preview; - ECalendarTable *task_table; + ETaskTable *task_table; ECalModel *model; time_t start_range; time_t end_range; @@ -264,7 +264,7 @@ task_shell_view_execute_search (EShellView *shell_view) /* Submit the query. */ task_shell_content = E_TASK_SHELL_CONTENT (shell_content); task_table = e_task_shell_content_get_task_table (task_shell_content); - model = e_calendar_table_get_model (task_table); + model = e_task_table_get_model (task_table); e_cal_model_set_search_query (model, query); g_free (query); |