diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2012-06-03 04:52:01 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2012-06-03 04:52:01 +0800 |
commit | ceea3a0a1feaa25b8022852b52b7dab1bdf5eb5d (patch) | |
tree | 55a3020880ccdde5a4a53bb7649d4f3efc5e2de2 /modules/addressbook | |
parent | 184ec36d35db3c2e0377a1845390070a23a7cf64 (diff) | |
download | gsoc2013-evolution-ceea3a0a1feaa25b8022852b52b7dab1bdf5eb5d.tar.gz gsoc2013-evolution-ceea3a0a1feaa25b8022852b52b7dab1bdf5eb5d.tar.zst gsoc2013-evolution-ceea3a0a1feaa25b8022852b52b7dab1bdf5eb5d.zip |
Reduce diff noise with 'account-mgmt' branch.
One last time.
Diffstat (limited to 'modules/addressbook')
-rw-r--r-- | modules/addressbook/autocompletion-config.c | 2 | ||||
-rw-r--r-- | modules/addressbook/autocompletion-config.h | 2 | ||||
-rw-r--r-- | modules/addressbook/e-book-shell-backend.c | 12 |
3 files changed, 9 insertions, 7 deletions
diff --git a/modules/addressbook/autocompletion-config.c b/modules/addressbook/autocompletion-config.c index 985eafaff5..f8199eef84 100644 --- a/modules/addressbook/autocompletion-config.c +++ b/modules/addressbook/autocompletion-config.c @@ -22,9 +22,7 @@ * */ -#ifdef HAVE_CONFIG_H #include <config.h> -#endif #include "autocompletion-config.h" diff --git a/modules/addressbook/autocompletion-config.h b/modules/addressbook/autocompletion-config.h index c4630f8d66..2cebea1b4a 100644 --- a/modules/addressbook/autocompletion-config.h +++ b/modules/addressbook/autocompletion-config.h @@ -30,7 +30,7 @@ G_BEGIN_DECLS -GtkWidget *autocompletion_config_new (EPreferencesWindow *window); +GtkWidget * autocompletion_config_new (EPreferencesWindow *window); G_END_DECLS diff --git a/modules/addressbook/e-book-shell-backend.c b/modules/addressbook/e-book-shell-backend.c index 5a564e8fa4..a10eefa01d 100644 --- a/modules/addressbook/e-book-shell-backend.c +++ b/modules/addressbook/e-book-shell-backend.c @@ -284,13 +284,17 @@ action_contact_new_cb (GtkAction *action, /* Use a callback function appropriate for the action. */ action_name = gtk_action_get_name (action); if (strcmp (action_name, "contact-new") == 0) - e_client_utils_open_new (source, E_CLIENT_SOURCE_TYPE_CONTACTS, FALSE, NULL, + e_client_utils_open_new ( + source, E_CLIENT_SOURCE_TYPE_CONTACTS, FALSE, NULL, e_client_utils_authenticate_handler, GTK_WINDOW (shell_window), - book_shell_backend_new_contact_cb, g_object_ref (shell)); + book_shell_backend_new_contact_cb, + g_object_ref (shell)); if (strcmp (action_name, "contact-new-list") == 0) - e_client_utils_open_new (source, E_CLIENT_SOURCE_TYPE_CONTACTS, FALSE, NULL, + e_client_utils_open_new ( + source, E_CLIENT_SOURCE_TYPE_CONTACTS, FALSE, NULL, e_client_utils_authenticate_handler, GTK_WINDOW (shell_window), - book_shell_backend_new_contact_list_cb, g_object_ref (shell)); + book_shell_backend_new_contact_list_cb, + g_object_ref (shell)); g_object_unref (source_list); } |