actually iterate through the list rather than infinitely loop

2002-01-10  jacob berkman  <jacob@ximian.com>

	* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
	through the list rather than infinitely loop
This commit is contained in:
jacob berkman 2002-01-11 00:49:42 +00:00 committed by Jacob Berkman
parent e5bba6a165
commit bebd021547
8 changed files with 36 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -1,3 +1,8 @@
2002-01-10 jacob berkman <jacob@ximian.com>
* gtk/gtkwidget.c (gtk_widget_add_events): actually iterate
through the list rather than infinitely loop
2002-01-08 Matthias Clasen <matthiasc@poet.de>
* gtk/gtkwidget.c (gtk_widget_set_style_recurse): Rename to

View File

@ -4911,6 +4911,7 @@ gtk_widget_add_events (GtkWidget *widget,
gdk_window_get_user_data (window, &user_data);
if (user_data == widget)
gdk_window_set_events (window, gdk_window_get_events (window) | events);
tmp_list = tmp_list->next;
}
g_list_free (children);