From 4d1961b7f6ca997275bac01ee86b82426b6ca37f Mon Sep 17 00:00:00 2001 From: Sushma Rai Date: Wed, 17 Aug 2005 09:35:22 +0000 Subject: Handling GTK_RESPONSE_DELETE_EVENT response. svn path=/trunk/; revision=30144 --- addressbook/ChangeLog | 9 ++++++++- addressbook/gui/merging/eab-contact-merging.c | 3 +++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index 4458f0fbcf..793e291d73 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,4 +1,11 @@ -2005-08-08 Devashish Sharma +2005-08-17 Devashish Sharma + + * gui/merging/eab-contact-merging.c (response): If the Duplicate + Contact Detected Dialog is closed by clicking the cross on the dialog + window the contact-list-editor or contact-editor dialog become unusable + and cant be closed. Added a case for catching GTK_RESPONSE_DELETE_EVENT. + +2005-08-17 Devashish Sharma * gui/merging/eab-contact-duplicate-detected.glade: In case of a duplicate contact list if the list is big the Cancel and Add buttons of diff --git a/addressbook/gui/merging/eab-contact-merging.c b/addressbook/gui/merging/eab-contact-merging.c index a43c56043d..37f147eaa4 100644 --- a/addressbook/gui/merging/eab-contact-merging.c +++ b/addressbook/gui/merging/eab-contact-merging.c @@ -143,6 +143,9 @@ response (GtkWidget *dialog, int response, EContactMergingLookup *lookup) case 1: cancelit (lookup); break; + case GTK_RESPONSE_DELETE_EVENT: + cancelit (lookup); + break; } } -- cgit v1.2.3