app/devices.c app/disp_callbacks.c app/gimprc.c app/scroll.c
2001-03-30 Michael Natterer <mitch@gimp.org> * app/devices.c * app/disp_callbacks.c * app/gimprc.c * app/scroll.c * app/tools/gimppainttool.[ch] * modules/colorsel_water.c: removed the GTK_HAVE_SIX_VALUATORS stuff in preparation of gtk 2.0 migration.
This commit is contained in:

committed by
Michael Natterer

parent
7e8f21f547
commit
c32c14552f
@ -336,12 +336,7 @@ motion_notify_event (GtkWidget *widget,
|
||||
{
|
||||
if (event->is_hint)
|
||||
gdk_input_window_get_pointer (event->window, event->deviceid,
|
||||
#ifdef GTK_HAVE_SIX_VALUATORS
|
||||
NULL, NULL, NULL, NULL, NULL, NULL, NULL
|
||||
#else /* !GTK_HAVE_SIX_VALUATORS */
|
||||
NULL, NULL, NULL, NULL, NULL, NULL
|
||||
#endif /* GTK_HAVE_SIX_VALUATORS */
|
||||
);
|
||||
NULL, NULL, NULL, NULL, NULL, NULL);
|
||||
|
||||
draw_brush (colorsel, widget,
|
||||
erase,
|
||||
@ -354,12 +349,7 @@ motion_notify_event (GtkWidget *widget,
|
||||
{
|
||||
gdk_input_window_get_pointer (event->window, event->deviceid,
|
||||
&event->x, &event->y,
|
||||
#ifdef GTK_HAVE_SIX_VALUATORS
|
||||
NULL, NULL, NULL, NULL, NULL
|
||||
#else /* !GTK_HAVE_SIX_VALUATORS */
|
||||
NULL, NULL, NULL, NULL
|
||||
#endif /* GTK_HAVE_SIX_VALUATORS */
|
||||
);
|
||||
NULL, NULL, NULL, NULL);
|
||||
}
|
||||
|
||||
return TRUE;
|
||||
|
Reference in New Issue
Block a user