remove the assert, if we dont understand the response, assume it's a

2003-05-02  Not Zed  <NotZed@Ximian.com>

        * e-request.c (e_request_string): remove the assert, if we dont
        understand the response, assume it's a cancel.
        GTK_RESPONSE_DELETE_EVENT wasn't handled [#42038].

svn path=/trunk/; revision=21100
This commit is contained in:
Not Zed
2003-05-05 00:56:34 +00:00
committed by Michael Zucci
parent a64932a775
commit 31289d7eb3
2 changed files with 7 additions and 4 deletions

View File

@ -1,3 +1,9 @@
2003-05-02 Not Zed <NotZed@Ximian.com>
* e-request.c (e_request_string): remove the assert, if we dont
understand the response, assume it's a cancel.
GTK_RESPONSE_DELETE_EVENT wasn't handled [#42038].
2003-04-30 Ettore Perazzoli <ettore@ximian.com>
* e-request.c (e_request_string): Handle GTK_RESPONSE_NONE.

View File

@ -91,12 +91,9 @@ e_request_string (GtkWindow *parent,
case GTK_RESPONSE_OK:
text = g_strdup (gtk_entry_get_text (GTK_ENTRY (entry)));
break;
case GTK_RESPONSE_CANCEL:
case GTK_RESPONSE_NONE:
default:
text = NULL;
break;
default:
g_assert_not_reached ();
}
gtk_widget_destroy (dialog);