]> Pileus Git - ~andy/gtk/commitdiff
swap the gtk_drag_highlight_expose and gtk_drag_highlight_paint since it
authorGeorge Lebl <jirka@5z.com>
Mon, 15 Mar 1999 11:42:44 +0000 (11:42 +0000)
committerGeorge Lebl <jirka@src.gnome.org>
Mon, 15 Mar 1999 11:42:44 +0000 (11:42 +0000)
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

ChangeLog
ChangeLog.pre-2-0
ChangeLog.pre-2-10
ChangeLog.pre-2-2
ChangeLog.pre-2-4
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gtk/gtkdnd.c

index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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:
index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
@@ -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:
index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
@@ -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:
index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
@@ -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:
index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
@@ -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:
index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
@@ -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:
index 7377efc5fe51ea2a7ce6dcc085e97fefe0bdf699..44ab049d1a1627fe857f2d28c11e5672188299aa 100644 (file)
@@ -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:
index 4c6949789d613908616ea9e499b98f069dc4f631..5b626d91f3eb97166c822c9dec0308ab6b4008be 100644 (file)
@@ -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);