axis code ... warning --

This commit is contained in:
Carsten Haitzler 2014-11-25 16:58:25 +09:00
parent 8d1b586b90
commit a04fd1c536
1 changed files with 3 additions and 1 deletions

View File

@ -550,7 +550,9 @@ ecore_event_evas_axis_update(void *data EINA_UNUSED, int type EINA_UNUSED, void
e = event;
lookup = _ecore_event_window_match(e->event_window);
if (!lookup) return ECORE_CALLBACK_PASS_ON;
evas_event_feed_axis_update(lookup->evas, e->timestamp, e->device, e->toolid, e->naxis, e->axis, NULL);
evas_event_feed_axis_update(lookup->evas, e->timestamp, e->device,
e->toolid, e->naxis,
(Evas_Axis *)e->axis, NULL);
return ECORE_CALLBACK_PASS_ON;
}