From ec73f5522ff2d6f8c476f02a9daaff32ef1db069 Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sat, 30 Jan 2010 15:32:08 -0500 Subject: Coding style and whitespace cleanup. --- plugins/groupwise-features/camel-gw-listener.c | 2 +- plugins/groupwise-features/proxy.c | 6 +++--- plugins/groupwise-features/share-folder.c | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) (limited to 'plugins/groupwise-features') diff --git a/plugins/groupwise-features/camel-gw-listener.c b/plugins/groupwise-features/camel-gw-listener.c index b65ba9768f..b9385ab390 100644 --- a/plugins/groupwise-features/camel-gw-listener.c +++ b/plugins/groupwise-features/camel-gw-listener.c @@ -876,7 +876,7 @@ account_changed (EAccountList *account_listener, EAccount *account) g_free (existing_account_info->source_url); g_free (existing_account_info); - } else if ( existing_account_info != NULL && is_gw_account ) { + } else if (existing_account_info != NULL && is_gw_account) { if (!account->enabled) { account_removed (account_listener, account); diff --git a/plugins/groupwise-features/proxy.c b/plugins/groupwise-features/proxy.c index 625789c370..6654844bb7 100644 --- a/plugins/groupwise-features/proxy.c +++ b/plugins/groupwise-features/proxy.c @@ -349,7 +349,7 @@ proxy_dialog_store_widgets_data (EAccount *account, gint32 dialog, GtkWindow *pa email, NULL); return -1; } - if (! g_ascii_strcasecmp(e_gw_connection_get_user_email (prd->cnc), email)) { + if (!g_ascii_strcasecmp(e_gw_connection_get_user_email (prd->cnc), email)) { e_alert_run_dialog_for_args (parent, "org.gnome.evolution.proxy:invalid-user", email, NULL); @@ -361,7 +361,7 @@ proxy_dialog_store_widgets_data (EAccount *account, gint32 dialog, GtkWindow *pa for (;existing_list; existing_list = g_list_next(existing_list)) { new_proxy = (proxyHandler *) existing_list->data; - if ( !g_ascii_strcasecmp (new_proxy->proxy_email, email) ) { + if (!g_ascii_strcasecmp (new_proxy->proxy_email, email)) { if (new_proxy->flags & E_GW_PROXY_DELETED) { new_proxy->permissions = proxy_get_permissions_from_dialog (account); if (new_proxy->flags & E_GW_PROXY_NEW) @@ -621,7 +621,7 @@ proxy_update_tree_view (EAccount *account) for (;list_iter; list_iter = g_list_next(list_iter)) { aclInstance = (proxyHandler *) list_iter->data; - if (! (aclInstance->flags & E_GW_PROXY_DELETED )) { + if (!(aclInstance->flags & E_GW_PROXY_DELETED )) { gtk_tree_store_append (priv->store, &iter, NULL); gtk_tree_store_set (priv->store, &iter, 0, broken_image, 1, g_strconcat(aclInstance->proxy_name,"\n",aclInstance->proxy_email, NULL), -1); } diff --git a/plugins/groupwise-features/share-folder.c b/plugins/groupwise-features/share-folder.c index cae99e77d0..7470337995 100644 --- a/plugins/groupwise-features/share-folder.c +++ b/plugins/groupwise-features/share-folder.c @@ -587,7 +587,7 @@ add_right_clicked (GtkCellRenderer *renderer, gchar *arg1, ShareFolder *sf ) gtk_tree_path_free (path); return; } - if (! usr->flag) /* if user was already existing one change the flag to update*/ + if (!usr->flag) /* if user was already existing one change the flag to update*/ usr->flag = usr->flag | 0x2; user = usr->user_node; if (!right) { @@ -620,7 +620,7 @@ edit_right_clicked(GtkCellRenderer *renderer, gchar *arg1, ShareFolder *sf ) gtk_tree_path_free (path); return; } - if (! usr->flag) /* if user was already existing one change the flag to update*/ + if (!usr->flag) /* if user was already existing one change the flag to update*/ usr->flag = usr->flag | 0x2; user = usr->user_node; @@ -654,7 +654,7 @@ delete_right_clicked(GtkCellRenderer *renderer, gchar *arg1, ShareFolder *sf ) gtk_tree_path_free (path); return; } - if (! usr->flag) /* if user was already existing one change the flag to update*/ + if (!usr->flag) /* if user was already existing one change the flag to update*/ usr->flag = usr->flag | 0x2; user = usr->user_node; if (!right) { -- cgit v1.2.3