From caa862135195b828d2e8355436fdd6eb0ec2443e Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Thu, 7 May 2009 07:21:57 -0400 Subject: Convert EShellModule to EShellBackend Split the GTypeModule loader out of EShellModule as EModule, and rename EShellModule to EShellBackend. Backends (formerly modules) should now subclass EShellBackend. This commit converts EShell but breaks all the shell backends. --- shell/e-shell.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'shell/e-shell.h') diff --git a/shell/e-shell.h b/shell/e-shell.h index 35095e1352..c76b649124 100644 --- a/shell/e-shell.h +++ b/shell/e-shell.h @@ -31,7 +31,7 @@ #include #include #include -#include +#include #include /* Standard GObject macros */ @@ -76,12 +76,12 @@ struct _EShellClass { GType e_shell_get_type (void); EShell * e_shell_get_default (void); -GList * e_shell_get_shell_modules (EShell *shell); +GList * e_shell_get_shell_backends (EShell *shell); const gchar * e_shell_get_canonical_name (EShell *shell, const gchar *name); -EShellModule * e_shell_get_module_by_name (EShell *shell, +EShellBackend * e_shell_get_backend_by_name (EShell *shell, const gchar *name); -EShellModule * e_shell_get_module_by_scheme (EShell *shell, +EShellBackend * e_shell_get_backend_by_scheme (EShell *shell, const gchar *scheme); EShellSettings *e_shell_get_shell_settings (EShell *shell); GConfClient * e_shell_get_gconf_client (EShell *shell); -- cgit