diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-09-04 19:34:32 +0800 |
commit | fcbbdfbd18e15b4ee8322a0217cf03a689a5e033 (patch) | |
tree | e16cd2a2279558c6a2bfb6ca39fcbaac4c85ba59 /plugins/webdav-account-setup | |
parent | f78417c48861759d7b0c4535ecd3febe4638a7d3 (diff) | |
download | gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.gz gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.tar.zst gsoc2013-evolution-fcbbdfbd18e15b4ee8322a0217cf03a689a5e033.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'plugins/webdav-account-setup')
-rw-r--r-- | plugins/webdav-account-setup/webdav-contacts-source.c | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/plugins/webdav-account-setup/webdav-contacts-source.c b/plugins/webdav-account-setup/webdav-contacts-source.c index ed716d3e89..a71eac36f1 100644 --- a/plugins/webdav-account-setup/webdav-contacts-source.c +++ b/plugins/webdav-account-setup/webdav-contacts-source.c @@ -47,11 +47,12 @@ typedef struct { GtkToggleButton *avoid_ifmatch_toggle; } ui_data; -GtkWidget * -plugin_webdav_contacts (EPlugin *epl, EConfigHookItemFactoryData *data); +GtkWidget * plugin_webdav_contacts (EPlugin *epl, + EConfigHookItemFactoryData *data); gint -e_plugin_lib_enable (EPlugin *ep, gint enable); +e_plugin_lib_enable (EPlugin *ep, + gint enable); static void ensure_webdav_contacts_source_group (void) @@ -204,7 +205,8 @@ destroy_ui_data (gpointer data) } GtkWidget * -plugin_webdav_contacts (EPlugin *epl, EConfigHookItemFactoryData *data) +plugin_webdav_contacts (EPlugin *epl, + EConfigHookItemFactoryData *data) { EABConfigTargetSource *t = (EABConfigTargetSource *) data->target; ESource *source; @@ -298,7 +300,8 @@ plugin_webdav_contacts (EPlugin *epl, EConfigHookItemFactoryData *data) } gint -e_plugin_lib_enable (EPlugin *ep, gint enable) +e_plugin_lib_enable (EPlugin *ep, + gint enable) { if (enable) { ensure_webdav_contacts_source_group (); |