r22343 - gnucash/branches/2.4/src/gnome-utils - [22342] Question dialog: treat close button in title bar as "Cancel" iso "No"
Geert Janssens
gjanssens at code.gnucash.org
Wed Aug 22 10:05:46 EDT 2012
Author: gjanssens
Date: 2012-08-22 10:05:46 -0400 (Wed, 22 Aug 2012)
New Revision: 22343
Trac: http://svn.gnucash.org/trac/changeset/22343
Modified:
gnucash/branches/2.4/src/gnome-utils/dialog-utils.c
Log:
[22342] Question dialog: treat close button in title bar as "Cancel" iso "No"
Modified: gnucash/branches/2.4/src/gnome-utils/dialog-utils.c
===================================================================
--- gnucash/branches/2.4/src/gnome-utils/dialog-utils.c 2012-08-22 14:01:17 UTC (rev 22342)
+++ gnucash/branches/2.4/src/gnome-utils/dialog-utils.c 2012-08-22 14:05:46 UTC (rev 22343)
@@ -980,7 +980,7 @@
response = gtk_dialog_run(dialog);
if ((response == GTK_RESPONSE_NONE) || (response == GTK_RESPONSE_DELETE_EVENT))
{
- return GTK_RESPONSE_NO;
+ return GTK_RESPONSE_CANCEL;
}
if (response != GTK_RESPONSE_CANCEL)
More information about the gnucash-changes
mailing list