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 /shell/e-shell-content.h | |
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 'shell/e-shell-content.h')
-rw-r--r-- | shell/e-shell-content.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/shell/e-shell-content.h b/shell/e-shell-content.h index 8e754fff26..9449040072 100644 --- a/shell/e-shell-content.h +++ b/shell/e-shell-content.h @@ -29,8 +29,8 @@ #define E_SHELL_CONTENT_H #include <shell/e-shell-common.h> -#include <filter/filter-rule.h> -#include <filter/rule-context.h> +#include <filter/e-filter-rule.h> +#include <filter/e-rule-context.h> /* Standard GObject macros */ #define E_TYPE_SHELL_CONTENT \ @@ -75,7 +75,7 @@ struct _EShellContentClass { GtkBinClass parent_class; /* Factory Methods */ - RuleContext * (*new_search_context) (void); + ERuleContext * (*new_search_context) (void); guint32 (*check_state) (EShellContent *shell_content); }; @@ -104,14 +104,14 @@ void e_shell_content_add_filter_separator_before void e_shell_content_add_filter_separator_after (EShellContent *shell_content, gint action_value); -RuleContext * e_shell_content_get_search_context +ERuleContext * e_shell_content_get_search_context (EShellContent *shell_content); const gchar * e_shell_content_get_search_hint (EShellContent *shell_content); void e_shell_content_set_search_hint (EShellContent *shell_content, const gchar *search_hint); -FilterRule * e_shell_content_get_search_rule (EShellContent *shell_content); +EFilterRule * e_shell_content_get_search_rule (EShellContent *shell_content); void e_shell_content_set_search_rule (EShellContent *shell_content, - FilterRule *search_rule); + EFilterRule *search_rule); const gchar * e_shell_content_get_search_text (EShellContent *shell_content); void e_shell_content_set_search_text (EShellContent *shell_content, const gchar *search_text); |