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:
@ -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.
|
||||
|
||||
@ -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);
|
||||
|
||||
Reference in New Issue
Block a user