aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-registry.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@src.gnome.org>2008-08-09 07:12:59 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-08-09 07:12:59 +0800
commit278c1fa77ba74f70a8d55e6d679f73372034fb14 (patch)
treebaff39d35a883b802328488a8ab037ff2585e2db /shell/e-shell-registry.c
parent7903e73970cbf89f4a49c5f7083b205b8670d0be (diff)
downloadgsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.gz
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.bz2
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.lz
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.xz
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.tar.zst
gsoc2013-evolution-278c1fa77ba74f70a8d55e6d679f73372034fb14.zip
Work through more compilation errors.
Rewrite EMultiConfigDialog to not use ETable. svn path=/branches/kill-bonobo/; revision=35942
Diffstat (limited to 'shell/e-shell-registry.c')
-rw-r--r--shell/e-shell-registry.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/shell/e-shell-registry.c b/shell/e-shell-registry.c
index 8329b59444..5c841398c3 100644
--- a/shell/e-shell-registry.c
+++ b/shell/e-shell-registry.c
@@ -22,7 +22,7 @@
static GList *loaded_modules;
static GHashTable *modules_by_name;
-static GHashTable *modules_by_schema;
+static GHashTable *modules_by_scheme;
static void
shell_registry_insert_items (GHashTable *hash_table,
@@ -77,9 +77,9 @@ shell_registry_query_module (const gchar *filename)
shell_registry_insert_items (
modules_by_name, string, shell_module);
- if ((string = info->schemas) != NULL)
+ if ((string = info->schemes) != NULL)
shell_registry_insert_items (
- modules_by_schema, string, shell_module);
+ modules_by_scheme, string, shell_module);
}
void
@@ -93,7 +93,7 @@ e_shell_registry_init (void)
g_return_if_fail (loaded_modules == NULL);
modules_by_name = g_hash_table_new (g_str_hash, g_str_equal);
- modules_by_schema = g_hash_table_new (g_str_hash, g_str_equal);
+ modules_by_scheme = g_hash_table_new (g_str_hash, g_str_equal);
dirname = EVOLUTION_MODULEDIR;
@@ -161,9 +161,9 @@ e_shell_registry_get_module_by_name (const gchar *name)
}
EShellModule *
-e_shell_registry_get_module_by_schema (const gchar *schema)
+e_shell_registry_get_module_by_scheme (const gchar *scheme)
{
- g_return_val_if_fail (schema != NULL, NULL);
+ g_return_val_if_fail (scheme != NULL, NULL);
- return g_hash_table_lookup (modules_by_schema, schema);
+ return g_hash_table_lookup (modules_by_scheme, scheme);
}