Fix the build

This commit is contained in:
Matthias Clasen 2006-01-03 15:38:31 +00:00
parent 53de39a409
commit df3005e14b
3 changed files with 5 additions and 1 deletions

View File

@ -1,4 +1,6 @@
2006-01-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c: Make it compile
* gtk/gtkdnd.c (gtk_drag_begin_internal): Call gtk_drag_update
for non-motion events. (#325443, Peter Harvey)

View File

@ -1,4 +1,6 @@
2006-01-03 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkdnd.c: Make it compile
* gtk/gtkdnd.c (gtk_drag_begin_internal): Call gtk_drag_update
for non-motion events. (#325443, Peter Harvey)

View File

@ -2221,7 +2221,7 @@ gtk_drag_begin_internal (GtkWidget *widget,
if (event && event->type == GDK_MOTION_NOTIFY)
gtk_drag_motion_cb (info->ipc_widget, (GdkEventMotion *)event, info);
else
gtk_drag_update (info, info->screen, info->cur_x, info->cur_y, event);
gtk_drag_update (info, info->cur_screen, info->cur_x, info->cur_y, event);
info->start_x = info->cur_x;
info->start_y = info->cur_y;