diff --git a/ChangeLog b/ChangeLog index a0770dd4af..d716fbba26 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index a0770dd4af..d716fbba26 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index a0770dd4af..d716fbba26 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index a0770dd4af..d716fbba26 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index a0770dd4af..d716fbba26 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index a0770dd4af..d716fbba26 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index a0770dd4af..d716fbba26 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +Mon Mar 15 03:39:47 1999 George Lebl + + * gtk/gtkdnd.c: (gtk_drag_highlight) swap the + gtk_drag_highlight_expose and gtk_drag_highlight_paint since + it was connecting a void function to expose_event and the int + returning function to the draw signal + Wed Mar 10 23:49:55 1999 Lars Hamann * gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index 3281a0d588..63d86c4ee4 100644 --- a/gtk/gtkdnd.c +++ b/gtk/gtkdnd.c @@ -744,10 +744,10 @@ void gtk_drag_highlight (GtkWidget *widget) { gtk_signal_connect_after (GTK_OBJECT (widget), "draw", - GTK_SIGNAL_FUNC (gtk_drag_highlight_expose), + GTK_SIGNAL_FUNC (gtk_drag_highlight_paint), NULL); gtk_signal_connect (GTK_OBJECT (widget), "expose_event", - GTK_SIGNAL_FUNC (gtk_drag_highlight_paint), + GTK_SIGNAL_FUNC (gtk_drag_highlight_expose), NULL); gtk_widget_queue_draw (widget);