diff options
author | Sushma Rai <rsushma@src.gnome.org> | 2005-08-17 17:35:22 +0800 |
---|---|---|
committer | Sushma Rai <rsushma@src.gnome.org> | 2005-08-17 17:35:22 +0800 |
commit | 4d1961b7f6ca997275bac01ee86b82426b6ca37f (patch) | |
tree | 0785f4305b6642d3c47d0755f63c63343a90dd84 /addressbook/gui/merging | |
parent | e00e8f790917f18a8a16e66e99c234b78d43ac65 (diff) | |
download | gsoc2013-evolution-4d1961b7f6ca997275bac01ee86b82426b6ca37f.tar.gz gsoc2013-evolution-4d1961b7f6ca997275bac01ee86b82426b6ca37f.tar.zst gsoc2013-evolution-4d1961b7f6ca997275bac01ee86b82426b6ca37f.zip |
Handling GTK_RESPONSE_DELETE_EVENT response.
svn path=/trunk/; revision=30144
Diffstat (limited to 'addressbook/gui/merging')
-rw-r--r-- | addressbook/gui/merging/eab-contact-merging.c | 3 |
1 files changed, 3 insertions, 0 deletions
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; } } |