[evolution-patches] [addressbook] Patch :Evolution becomes unusable if Duplicate contact detected dialog is closed by clicking the cross on the dialog



Hi,

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. This patch adds a case for catching
GTK_RESPONSE_DELETE_EVENT.

Thanks,
Devashish
Index: ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/ChangeLog,v
retrieving revision 1.1974
diff -u -p -r1.1974 ChangeLog
--- ChangeLog	5 Aug 2005 10:23:16 -0000	1.1974
+++ ChangeLog	8 Aug 2005 13:13:38 -0000
@@ -1,3 +1,12 @@
+2005-08-08  Devashish Sharma <sdevashish novell com>
+
+	* 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-03-05  Sushma Rai  <rsushma novell com>
 
 	* gui/widgets/eab-contact-display.c (render_contact): Using 
Index: eab-contact-merging.c
===================================================================
RCS file: /cvs/gnome/evolution/addressbook/gui/merging/eab-contact-merging.c,v
retrieving revision 1.5
diff -u -p -w -r1.5 eab-contact-merging.c
--- eab-contact-merging.c	21 Jan 2005 21:53:43 -0000	1.5
+++ eab-contact-merging.c	8 Aug 2005 13:14:46 -0000
@@ -143,6 +143,9 @@ response (GtkWidget *dialog, int respons
 	case 1:
 		cancelit (lookup);
 		break;
+	case -4:
+		cancelit (lookup) ;
+		break ;
 	}
 }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]