display: Rename meta_display_handle_event to meta_display_handle_xevent

The plan is to make a new version of meta_display_handle_event that
will accept Clutter events instead of X events and then gradually move
over the events to the new function and finally remove the X version.
This commit is contained in:
Neil Roberts
2013-08-29 14:07:50 +01:00
committed by Jasper St. Pierre
parent 9db02a7379
commit 02e163882a
3 changed files with 7 additions and 7 deletions

View File

@@ -2226,7 +2226,7 @@ reload_xkb_rules (MetaScreen *screen)
}
/**
* meta_display_handle_event:
* meta_display_handle_xevent:
* @display: The MetaDisplay that events are coming from
* @event: The event that just happened
*
@@ -2239,8 +2239,8 @@ reload_xkb_rules (MetaScreen *screen)
* dealing with all the kinds of events that might turn up.
*/
gboolean
meta_display_handle_event (MetaDisplay *display,
XEvent *event)
meta_display_handle_xevent (MetaDisplay *display,
XEvent *event)
{
MetaWindow *window;
MetaWindow *property_for_window;
@@ -3240,7 +3240,7 @@ event_callback (XEvent *event,
event->xcookie.evtype == XI_Motion)
return FALSE;
return meta_display_handle_event (display, event);
return meta_display_handle_xevent (display, event);
}
/* Return the window this has to do with, if any, rather