removed redundant assignment of widget_class->motion_notify_event.

2005-12-01  Michael Natterer  <mitch@imendio.com>

	* gtk/gtkmenu.c (gtk_menu_class_init): removed redundant
	assignment of widget_class->motion_notify_event.
This commit is contained in:
Michael Natterer 2005-12-01 13:03:43 +00:00 committed by Michael Natterer
parent d29ec308bd
commit 5e1335376f
3 changed files with 10 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2005-12-01 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenu.c (gtk_menu_class_init): removed redundant
assignment of widget_class->motion_notify_event.
2005-11-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktoggleaction.c (gtk_toggle_action_class_init): Add

View File

@ -1,3 +1,8 @@
2005-12-01 Michael Natterer <mitch@imendio.com>
* gtk/gtkmenu.c (gtk_menu_class_init): removed redundant
assignment of widget_class->motion_notify_event.
2005-11-29 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktoggleaction.c (gtk_toggle_action_class_init): Add

View File

@ -474,7 +474,6 @@ gtk_menu_class_init (GtkMenuClass *class)
widget_class->hide_all = gtk_menu_hide_all;
widget_class->enter_notify_event = gtk_menu_enter_notify;
widget_class->leave_notify_event = gtk_menu_leave_notify;
widget_class->motion_notify_event = gtk_menu_motion_notify;
widget_class->style_set = gtk_menu_style_set;
widget_class->focus = gtk_menu_focus;
widget_class->can_activate_accel = gtk_menu_real_can_activate_accel;