diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2010-09-12 02:56:28 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2010-09-13 20:28:58 +0800 |
commit | cd53ba990035bdb4861d9660917d457533d4ecb2 (patch) | |
tree | d9c9da2208f4a921c514497ea92d27e3d88481d1 /plugins/bogo-junk-plugin | |
parent | b2b27cfa1bfcd6efdac30d2745a6e8cd4e6de134 (diff) | |
download | gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.gz gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.tar.zst gsoc2013-evolution-cd53ba990035bdb4861d9660917d457533d4ecb2.zip |
Coding style cleanups.
Diffstat (limited to 'plugins/bogo-junk-plugin')
-rw-r--r-- | plugins/bogo-junk-plugin/bf-junk-filter.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/bogo-junk-plugin/bf-junk-filter.c b/plugins/bogo-junk-plugin/bf-junk-filter.c index 2bd72f96cd..c335f6d46f 100644 --- a/plugins/bogo-junk-plugin/bf-junk-filter.c +++ b/plugins/bogo-junk-plugin/bf-junk-filter.c @@ -205,7 +205,7 @@ retry: if (!only_once) { /* Create wordlist.db */ only_once = TRUE; - init_db(); + init_db (); goto retry; } @@ -350,7 +350,7 @@ e_plugin_lib_enable (EPlugin *ep, gint enable) return 0; first = FALSE; - gconf = gconf_client_get_default(); + gconf = gconf_client_get_default (); gconf_client_add_dir (gconf, em_junk_bf_gconf_dir, @@ -375,7 +375,7 @@ convert_unicode_cb (GtkWidget *widget, gpointer data) { gboolean active = gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (widget)); - GConfClient *gconf = gconf_client_get_default(); + GConfClient *gconf = gconf_client_get_default (); gconf_client_set_bool (gconf, data, active, NULL); |