diff options
Diffstat (limited to 'addressbook/gui/component')
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 3 | ||||
-rw-r--r-- | addressbook/gui/component/select-names/e-select-names.c | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index bee8261fb0..8bae268ced 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -703,7 +703,8 @@ static void search_base_selection_model_changed (ESelectionModel *selection_model, GtkWidget *dialog) { gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog), - GTK_RESPONSE_OK, e_selection_model_selected_count (selection_model) == 1); + GTK_RESPONSE_OK, + e_selection_model_selected_count (selection_model) == 1); } static void diff --git a/addressbook/gui/component/select-names/e-select-names.c b/addressbook/gui/component/select-names/e-select-names.c index 8b0531093b..f08afe10db 100644 --- a/addressbook/gui/component/select-names/e-select-names.c +++ b/addressbook/gui/component/select-names/e-select-names.c @@ -484,8 +484,8 @@ e_select_names_init (ESelectNames *e_select_names) gtk_widget_unref(widget); gtk_dialog_add_buttons (GTK_DIALOG (e_select_names), - GTK_STOCK_OK, GTK_RESPONSE_OK, GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, + GTK_STOCK_OK, GTK_RESPONSE_OK, NULL); gtk_dialog_set_default_response (GTK_DIALOG (e_select_names), |