Drop GDK_MULTIHEAD_SAFE

We don't support multiple screens anymore, so there is no need
for marking API as multihead safe any longer.
This commit is contained in:
Matthias Clasen
2014-06-11 21:55:15 -04:00
parent 41fd2ae898
commit 5334fb8921
18 changed files with 2 additions and 71 deletions

View File

@ -479,11 +479,7 @@ gdk_event_put (const GdkEvent *event)
if (event->any.window)
display = gdk_window_get_display (event->any.window);
else
{
GDK_NOTE (MULTIHEAD,
g_message ("Falling back to default display for gdk_event_put()"));
display = gdk_display_get_default ();
}
display = gdk_display_get_default ();
gdk_display_put_event (display, event);
}