diff options
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); } |