diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2009-05-29 01:06:29 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2009-05-29 01:21:01 +0800 |
commit | 14f8eee012382f04090ea9277e9567d5f32e8bf0 (patch) | |
tree | d1c454675e816f8d948942c21c5d899a969b08a7 /plugins/groupwise-account-setup | |
parent | e66024d664a1d346d6246b4e8b7c682bafcf4dda (diff) | |
download | gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.gz gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.bz2 gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.lz gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.xz gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.tar.zst gsoc2013-evolution-14f8eee012382f04090ea9277e9567d5f32e8bf0.zip |
Whitespace cleanup.
Diffstat (limited to 'plugins/groupwise-account-setup')
-rw-r--r-- | plugins/groupwise-account-setup/camel-gw-listener.c | 22 | ||||
-rw-r--r-- | plugins/groupwise-account-setup/groupwise-account-setup.c | 2 |
2 files changed, 12 insertions, 12 deletions
diff --git a/plugins/groupwise-account-setup/camel-gw-listener.c b/plugins/groupwise-account-setup/camel-gw-listener.c index 46beaac0b8..99679ebd18 100644 --- a/plugins/groupwise-account-setup/camel-gw-listener.c +++ b/plugins/groupwise-account-setup/camel-gw-listener.c @@ -36,7 +36,7 @@ /*stores some info about all currently existing groupwise accounts list of GwAccountInfo structures */ -static GList *groupwise_accounts = NULL; +static GList *groupwise_accounts = NULL; struct _CamelGwListenerPrivate { GConfClient *gconf_client; @@ -192,7 +192,7 @@ add_esource (const gchar *conf_key, GwAccountInfo *info, const gchar *source_na soap_port = camel_url_get_param (url, "soap_port"); - if (!soap_port || strlen (soap_port) == 0) + if (!soap_port || strlen (soap_port) == 0) soap_port = "7191"; use_ssl = camel_url_get_param (url, "use_ssl"); @@ -345,7 +345,7 @@ modify_esource (const gchar * conf_key, GwAccountInfo *old_account_info, EAccoun gchar *old_relative_uri; CamelURL *url; gboolean found_group; - GConfClient* client; + GConfClient* client; const gchar *poa_address; const gchar *new_poa_address; const gchar * new_group_name = a->name; @@ -464,7 +464,7 @@ remove_calendar_tasks_sources (GwAccountInfo *info) static GList* get_addressbook_names_from_server (gchar *source_url) { - gchar *key; + gchar *key; EGwConnection *cnc; gchar *password; GList *book_list = NULL; @@ -580,7 +580,7 @@ add_addressbook_sources (EAccount *account) ESourceList *list; ESourceGroup *group; ESource *source; - gchar *base_uri; + gchar *base_uri; const gchar *soap_port; GList *books_list, *temp_list; GConfClient* client; @@ -671,7 +671,7 @@ modify_addressbook_sources ( EAccount *account, GwAccountInfo *existing_account_ ESourceList *list; ESourceGroup *group; GSList *groups; - gboolean found_group; + gboolean found_group; gboolean delete_group; gchar *old_base_uri; gchar *new_base_uri; @@ -756,7 +756,7 @@ remove_addressbook_sources (GwAccountInfo *existing_account_info) ESourceList *list; ESourceGroup *group; GSList *groups; - gboolean found_group; + gboolean found_group; CamelURL *url; gchar *base_uri; const gchar *soap_port; @@ -839,7 +839,7 @@ account_added (EAccountList *account_listener, EAccount *account) static void account_removed (EAccountList *account_listener, EAccount *account) { - GwAccountInfo *info; + GwAccountInfo *info; if (!is_groupwise_account (account)) return; @@ -919,7 +919,7 @@ account_changed (EAccountList *account_listener, EAccount *account) if ((old_poa_address && strcmp (old_poa_address, new_poa_address)) || (old_soap_port && strcmp (old_soap_port, new_soap_port)) || strcmp (old_url->user, new_url->user) - || (!old_use_ssl) + || (!old_use_ssl) || strcmp (old_use_ssl, new_use_ssl)) { account_removed (account_listener, account); @@ -998,7 +998,7 @@ camel_gw_listener_construct (CamelGwListener *config_listener) prune_proxies (); - config_listener->priv->account_list = e_account_list_new (config_listener->priv->gconf_client); + config_listener->priv->account_list = e_account_list_new (config_listener->priv->gconf_client); for ( iter = e_list_get_iterator (E_LIST ( config_listener->priv->account_list) ) ; e_iterator_is_valid (iter); e_iterator_next (iter) ) { @@ -1006,7 +1006,7 @@ camel_gw_listener_construct (CamelGwListener *config_listener) if ( is_groupwise_account (account) && account->enabled) { - info = g_new0 (GwAccountInfo, 1); + info = g_new0 (GwAccountInfo, 1); info->uid = g_strdup (account->uid); info->name = g_strdup (account->name); info->source_url = g_strdup (account->source->url); diff --git a/plugins/groupwise-account-setup/groupwise-account-setup.c b/plugins/groupwise-account-setup/groupwise-account-setup.c index 71bb1ee31e..549c75da61 100644 --- a/plugins/groupwise-account-setup/groupwise-account-setup.c +++ b/plugins/groupwise-account-setup/groupwise-account-setup.c @@ -118,7 +118,7 @@ e_plugin_lib_enable (EPluginLib *ep, gint enable) { if (!config_listener) { config_listener = camel_gw_listener_new (); - g_atexit ( free_groupwise_listener ); + g_atexit ( free_groupwise_listener ); } return 0; |