diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-10-25 21:17:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-10-27 21:25:01 +0800 |
commit | 2b16aef84141800099f859e72d05e1e6bf8e02dd (patch) | |
tree | b7168d8e9a4157a1f6733b0c667dd6239c5e0055 /modules/calendar | |
parent | 58166e645971a4812fef23702f45cacc8e64e419 (diff) | |
download | gsoc2013-evolution-2b16aef84141800099f859e72d05e1e6bf8e02dd.tar.gz gsoc2013-evolution-2b16aef84141800099f859e72d05e1e6bf8e02dd.tar.zst gsoc2013-evolution-2b16aef84141800099f859e72d05e1e6bf8e02dd.zip |
Cleanup and rename filter classes.
Diffstat (limited to 'modules/calendar')
-rw-r--r-- | modules/calendar/e-cal-shell-view.c | 8 | ||||
-rw-r--r-- | modules/calendar/e-memo-shell-view.c | 8 | ||||
-rw-r--r-- | modules/calendar/e-task-shell-view.c | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/modules/calendar/e-cal-shell-view.c b/modules/calendar/e-cal-shell-view.c index 32f12b605f..41782deb7f 100644 --- a/modules/calendar/e-cal-shell-view.c +++ b/modules/calendar/e-cal-shell-view.c @@ -63,7 +63,7 @@ cal_shell_view_execute_search (EShellView *shell_view) ECalendar *date_navigator; GtkRadioAction *action; GString *string; - FilterRule *rule; + EFilterRule *rule; const gchar *format; const gchar *text; time_t start_range; @@ -179,10 +179,10 @@ cal_shell_view_execute_search (EShellView *shell_view) } } - /* XXX This is wrong. We need to programmatically construct a - * FilterRule, tell it to build code, and pass the resulting + /* XXX This is wrong. We need to programmatically construct an + * EFilterRule, tell it to build code, and pass the resulting * expressing string to ECalModel. */ - rule = filter_rule_new (); + rule = e_filter_rule_new (); e_shell_content_set_search_rule (shell_content, rule); g_object_unref (rule); diff --git a/modules/calendar/e-memo-shell-view.c b/modules/calendar/e-memo-shell-view.c index ea869b55c4..f5698fe9b7 100644 --- a/modules/calendar/e-memo-shell-view.c +++ b/modules/calendar/e-memo-shell-view.c @@ -62,7 +62,7 @@ memo_shell_view_execute_search (EShellView *shell_view) ECalComponentPreview *memo_preview; EMemoTable *memo_table; ECalModel *model; - FilterRule *rule; + EFilterRule *rule; const gchar *format; const gchar *text; gchar *query; @@ -135,10 +135,10 @@ memo_shell_view_execute_search (EShellView *shell_view) } } - /* XXX This is wrong. We need to programmatically construct a - * FilterRule, tell it to build code, and pass the resulting + /* XXX This is wrong. We need to programmatically construct an + * EFilterRule, tell it to build code, and pass the resulting * expression string to ECalModel. */ - rule = filter_rule_new (); + rule = e_filter_rule_new (); e_shell_content_set_search_rule (shell_content, rule); g_object_unref (rule); diff --git a/modules/calendar/e-task-shell-view.c b/modules/calendar/e-task-shell-view.c index 650037b730..ec7d697a9d 100644 --- a/modules/calendar/e-task-shell-view.c +++ b/modules/calendar/e-task-shell-view.c @@ -101,7 +101,7 @@ task_shell_view_execute_search (EShellView *shell_view) ECalComponentPreview *task_preview; ECalendarTable *task_table; ECalModel *model; - FilterRule *rule; + EFilterRule *rule; const gchar *format; const gchar *text; time_t start_range; @@ -247,10 +247,10 @@ task_shell_view_execute_search (EShellView *shell_view) query = temp2; } - /* XXX This is wrong. We need to programmatically construct a - * FilterRule, tell it to build code, and pass the resulting + /* XXX This is wrong. We need to programmatically construct an + * EFilterRule, tell it to build code, and pass the resulting * expression string to ECalModel. */ - rule = filter_rule_new (); + rule = e_filter_rule_new (); e_shell_content_set_search_rule (shell_content, rule); g_object_unref (rule); |