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/calendar-http | |
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/calendar-http')
-rw-r--r-- | plugins/calendar-http/calendar-http.c | 32 |
1 files changed, 22 insertions, 10 deletions
diff --git a/plugins/calendar-http/calendar-http.c b/plugins/calendar-http/calendar-http.c index 9e1acfa02e..fcf7002ab5 100644 --- a/plugins/calendar-http/calendar-http.c +++ b/plugins/calendar-http/calendar-http.c @@ -41,13 +41,15 @@ GtkWidget *e_calendar_http_auth (EPlugin *epl, EConfigHookItemFactoryData *data) gint e_plugin_lib_enable (EPlugin *ep, gint enable); gint -e_plugin_lib_enable (EPlugin *ep, gint enable) +e_plugin_lib_enable (EPlugin *ep, + gint enable) { return 0; } static void -url_changed (GtkEntry *entry, ESource *source) +url_changed (GtkEntry *entry, + ESource *source) { SoupURI *uri; gchar *relative_uri; @@ -74,7 +76,8 @@ url_changed (GtkEntry *entry, ESource *source) } GtkWidget * -e_calendar_http_url (EPlugin *epl, EConfigHookItemFactoryData *data) +e_calendar_http_url (EPlugin *epl, + EConfigHookItemFactoryData *data) { GtkWidget *entry; ECalConfigTargetSource *t = (ECalConfigTargetSource *) data->target; @@ -103,14 +106,17 @@ e_calendar_http_url (EPlugin *epl, EConfigHookItemFactoryData *data) entry = e_plugin_util_add_entry (data->parent, _("_URL:"), NULL, NULL); gtk_entry_set_text (GTK_ENTRY (entry), uri_text); - g_signal_connect (G_OBJECT (entry), "changed", G_CALLBACK (url_changed), t->source); + g_signal_connect ( + entry, "changed", + G_CALLBACK (url_changed), t->source); g_free (uri_text); return entry; } GtkWidget * -e_calendar_http_refresh (EPlugin *epl, EConfigHookItemFactoryData *data) +e_calendar_http_refresh (EPlugin *epl, + EConfigHookItemFactoryData *data) { ECalConfigTargetSource *t = (ECalConfigTargetSource *) data->target; @@ -124,7 +130,8 @@ e_calendar_http_refresh (EPlugin *epl, EConfigHookItemFactoryData *data) } GtkWidget * -e_calendar_http_secure (EPlugin *epl, EConfigHookItemFactoryData *data) +e_calendar_http_secure (EPlugin *epl, + EConfigHookItemFactoryData *data) { ECalConfigTargetSource *t = (ECalConfigTargetSource *) data->target; GtkWidget *secure_setting; @@ -144,7 +151,8 @@ e_calendar_http_secure (EPlugin *epl, EConfigHookItemFactoryData *data) } static void -username_changed (GtkEntry *entry, ESource *source) +username_changed (GtkEntry *entry, + ESource *source) { const gchar *username; gchar *uri; @@ -181,7 +189,8 @@ username_changed (GtkEntry *entry, ESource *source) } GtkWidget * -e_calendar_http_auth (EPlugin *epl, EConfigHookItemFactoryData *data) +e_calendar_http_auth (EPlugin *epl, + EConfigHookItemFactoryData *data) { ECalConfigTargetSource *t = (ECalConfigTargetSource *) data->target; GtkWidget *entry; @@ -197,13 +206,16 @@ e_calendar_http_auth (EPlugin *epl, EConfigHookItemFactoryData *data) entry = e_plugin_util_add_entry (data->parent, _("Userna_me:"), NULL, NULL); gtk_entry_set_text (GTK_ENTRY (entry), username ? username : ""); - g_signal_connect (G_OBJECT (entry), "changed", G_CALLBACK (username_changed), t->source); + g_signal_connect ( + entry, "changed", + G_CALLBACK (username_changed), t->source); return entry; } gboolean -e_calendar_http_check (EPlugin *epl, EConfigHookPageCheckData *data) +e_calendar_http_check (EPlugin *epl, + EConfigHookPageCheckData *data) { /* FIXME - check pageid */ ECalConfigTargetSource *t = (ECalConfigTargetSource *) data->target; |