Linux: Emit "delete_event" signal instead of calling gtk_widget_destroy (issue #780).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1038 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2013-01-18 20:18:25 +00:00
parent e8fd7a97b8
commit 29108bda5f
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ void CefBrowserHostImpl::PlatformCloseWindow() {
if (window_info_.widget != NULL) {
GtkWidget* window =
gtk_widget_get_toplevel(GTK_WIDGET(window_info_.widget));
gtk_widget_destroy(window);
gtk_signal_emit_by_name(GTK_OBJECT(window), "delete_event");
}
}