diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-05-09 01:24:42 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:11 +0800 |
commit | 54da4fc09cf226fdb59b9f0c70555e2e57dc1f91 (patch) | |
tree | c62c9ac6d08670dffc400ff00117508512ce4f8b /plugins/bbdb/bbdb.c | |
parent | fe20f70779fb486169a0735499d24e001ffa0cab (diff) | |
download | gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.gz gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.tar.zst gsoc2013-evolution-54da4fc09cf226fdb59b9f0c70555e2e57dc1f91.zip |
Coding style cleanups.
Diffstat (limited to 'plugins/bbdb/bbdb.c')
-rw-r--r-- | plugins/bbdb/bbdb.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/bbdb/bbdb.c b/plugins/bbdb/bbdb.c index 545fd6842d..bfb63c5505 100644 --- a/plugins/bbdb/bbdb.c +++ b/plugins/bbdb/bbdb.c @@ -197,7 +197,7 @@ bbdb_do_in_thread (gpointer data) if (!book || !bbdb_open_ebook (book)) { G_LOCK (todo); - g_slist_foreach (todo, (GFunc)free_todo_struct, NULL); + g_slist_foreach (todo, (GFunc) free_todo_struct, NULL); g_slist_free (todo); todo = NULL; @@ -357,7 +357,7 @@ bbdb_do_it (EBook *book, const gchar *name, const gchar *email) e_book_query_unref (query); if (contacts != NULL || !status) { for (l = contacts; l != NULL; l = l->next) - g_object_unref ((GObject *)l->data); + g_object_unref ((GObject *) l->data); g_list_free (contacts); g_free (temp_name); @@ -391,7 +391,7 @@ bbdb_do_it (EBook *book, const gchar *name, const gchar *email) this. */ if (!status || contacts->next != NULL) { for (l = contacts; l != NULL; l = l->next) - g_object_unref ((GObject *)l->data); + g_object_unref ((GObject *) l->data); g_list_free (contacts); g_free (temp_name); return; @@ -405,7 +405,7 @@ bbdb_do_it (EBook *book, const gchar *name, const gchar *email) } for (l = contacts; l != NULL; l = l->next) - g_object_unref ((GObject *)l->data); + g_object_unref ((GObject *) l->data); g_list_free (contacts); g_free (temp_name); |