backends/cursor: Rename X11 cursor creation function

It was prefixed with meta_cursor_, but it took a X11 Display, so update
the naming. Eventually it should be duplicated depending if it's a
frontend X11 connection call or a backend X11 connection call and moved
to the corresponding layers, but let's just do this minor cleanup for
now.

https://gitlab.gnome.org/GNOME/mutter/issues/77
This commit is contained in:
Jonas Ådahl
2018-04-27 15:39:29 +02:00
parent 10dfc67dad
commit 2fc978ca9d
4 changed files with 8 additions and 6 deletions

View File

@ -3018,7 +3018,7 @@ Cursor
meta_display_create_x_cursor (MetaDisplay *display,
MetaCursor cursor)
{
return meta_cursor_create_x_cursor (display->xdisplay, cursor);
return meta_create_x_cursor (display->xdisplay, cursor);
}
MetaGestureTracker *