swap the gtk_drag_highlight_expose and gtk_drag_highlight_paint since it
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com> * 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
This commit is contained in:
parent
90d69893fd
commit
cb8adfba87
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -1,3 +1,10 @@
|
||||
Mon Mar 15 03:38:34 1999 George Lebl <jirka@5z.com>
|
||||
|
||||
* 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 <jgarzik@pobox.com>
|
||||
|
||||
* configure.in:
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user