ecore-wl2: Remove cursor field from window structure

Remove the const char *cursor field from the window structure as this
is useless. It was never used for any real functional purpose.

@fix

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-10-26 10:48:05 -04:00
parent 06608f632e
commit 2166ae6377
2 changed files with 0 additions and 3 deletions

View File

@ -138,7 +138,6 @@ struct _Ecore_Wl2_Window
int id, rotation, surface_id;
const char *title;
const char *class;
const char *cursor;
struct wl_surface *surface;
struct wl_shell_surface *wl_shell_surface;

View File

@ -963,8 +963,6 @@ ecore_wl2_window_cursor_from_name_set(Ecore_Wl2_Window *window, const char *curs
EINA_SAFETY_ON_NULL_RETURN(window);
eina_stringshare_replace(&window->cursor, cursor);
input = ecore_wl2_window_input_get(window);
if (!input) return;