diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2008-04-19 05:00:09 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@src.gnome.org> | 2008-04-19 05:00:09 +0800 |
commit | 8c2243649d8f2664325406e860f9ac22dfec647d (patch) | |
tree | 9295e7728d5e68e42d658fa76399e7191bee3308 | |
parent | 303bb68c43d5c436ecbb5e113160c901360502a1 (diff) | |
download | gsoc2013-evolution-8c2243649d8f2664325406e860f9ac22dfec647d.tar.gz gsoc2013-evolution-8c2243649d8f2664325406e860f9ac22dfec647d.tar.zst gsoc2013-evolution-8c2243649d8f2664325406e860f9ac22dfec647d.zip |
** Fixes bug #528817
2008-04-18 Matthew Barnes <mbarnes@redhat.com>
** Fixes bug #528817
* e-plugin.c (e_plugin_register_type):
Fix a typo in the logic. This might explain why I occasionally
find Exchange Operations disabled on startup.
svn path=/branches/gnome-2-22/; revision=35384
-rw-r--r-- | e-util/ChangeLog | 8 | ||||
-rw-r--r-- | e-util/e-plugin.c | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/e-util/ChangeLog b/e-util/ChangeLog index d86f1e06fc..12ff19ed7b 100644 --- a/e-util/ChangeLog +++ b/e-util/ChangeLog @@ -1,3 +1,11 @@ +2008-04-18 Matthew Barnes <mbarnes@redhat.com> + + ** Fixes bug #528817 + + * e-plugin.c (e_plugin_register_type): + Fix a typo in the logic. This might explain why I occasionally + find Exchange Operations disabled on startup. + 2008-03-17 Alex Rostovtsev <tetromino@gmail.com> ** Fix for bug #522631 diff --git a/e-util/e-plugin.c b/e-util/e-plugin.c index 0a87513adf..9eac8c752b 100644 --- a/e-util/e-plugin.c +++ b/e-util/e-plugin.c @@ -574,7 +574,7 @@ e_plugin_register_type(GType type) char *prop_type; prop_type = (char *)xmlGetProp(root, (const unsigned char *)"type"); - if (!strcmp((char *)type, klass->type)) + if (!strcmp(prop_type, klass->type)) add = g_slist_append(add, l->data); xmlFree(prop_type); } |