Fix some warnings added by the input handling

Add casting and actually fix parenthisation of boolean expression
This commit is contained in:
Alexander Larsson
2009-06-03 11:24:27 +02:00
parent 609b03c517
commit 9437138db2

View File

@@ -8098,7 +8098,7 @@ send_crossing_event (GdkDisplay *display,
event_mask = GDK_ENTER_NOTIFY_MASK;
if (window->extension_events != 0)
GDK_WINDOW_IMPL_GET_IFACE (window->impl)->input_window_crossing (window,
GDK_WINDOW_IMPL_GET_IFACE (window->impl)->input_window_crossing ((GdkWindow *)window,
type == GDK_ENTER_NOTIFY);
if (window->event_mask & event_mask)
@@ -8784,9 +8784,9 @@ is_input_event (GdkDisplay *display,
core_pointer = gdk_display_get_core_pointer (display);
if ((event->type == GDK_MOTION_NOTIFY &&
event->motion.device != core_pointer) ||
(event->type == GDK_BUTTON_PRESS ||
event->type == GDK_BUTTON_RELEASE) &&
event->button.device != core_pointer)
((event->type == GDK_BUTTON_PRESS ||
event->type == GDK_BUTTON_RELEASE) &&
event->button.device != core_pointer))
return TRUE;
return FALSE;
}