diff options
Diffstat (limited to 'modules/addressbook/e-book-shell-view.c')
-rw-r--r-- | modules/addressbook/e-book-shell-view.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/addressbook/e-book-shell-view.c b/modules/addressbook/e-book-shell-view.c index f7019b0b3a..4a09a14825 100644 --- a/modules/addressbook/e-book-shell-view.c +++ b/modules/addressbook/e-book-shell-view.c @@ -131,7 +131,7 @@ book_shell_view_execute_search (EShellView *shell_view) GString *string; EAddressbookView *view; EAddressbookModel *model; - FilterRule *rule; + EFilterRule *rule; const gchar *format; const gchar *text; gchar *query; @@ -208,10 +208,10 @@ book_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 EAddressbookModel. */ - rule = filter_rule_new (); + rule = e_filter_rule_new (); e_shell_content_set_search_rule (shell_content, rule); g_object_unref (rule); |