From cb8adfba874807763033d5878793a134b6ddc87c Mon Sep 17 00:00:00 2001 From: George Lebl Date: Mon, 15 Mar 1999 11:42:44 +0000 Subject: [PATCH] swap the gtk_drag_highlight_expose and gtk_drag_highlight_paint since it Mon Mar 15 03:38:34 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 --- ChangeLog | 7 +++++++ ChangeLog.pre-2-0 | 7 +++++++ ChangeLog.pre-2-10 | 7 +++++++ ChangeLog.pre-2-2 | 7 +++++++ ChangeLog.pre-2-4 | 7 +++++++ ChangeLog.pre-2-6 | 7 +++++++ ChangeLog.pre-2-8 | 7 +++++++ gtk/gtkdnd.c | 4 ++-- 8 files changed, 51 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0 index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog.pre-2-0 +++ b/ChangeLog.pre-2-0 @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2 index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog.pre-2-2 +++ b/ChangeLog.pre-2-2 @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index 7377efc5fe..44ab049d1a 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,3 +1,10 @@ +Mon Mar 15 03:38:34 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 + 1999-03-14 Jeff Garzik * configure.in: diff --git a/gtk/gtkdnd.c b/gtk/gtkdnd.c index 4c6949789d..5b626d91f3 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);