Fix function and protoype for pointer_xy_get (missing const).

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2013-07-08 14:09:02 +01:00
parent f880ef9045
commit 5e94e640c6
2 changed files with 2 additions and 2 deletions

View File

@ -833,7 +833,7 @@ _ecore_evas_wl_common_frame_border_size_get(Evas_Object *obj, int *fx, int *fy,
}
void
_ecore_evas_wl_common_pointer_xy_get(Ecore_Evas *ee EINA_UNUSED, Evas_Coord *x, Evas_Coord *y)
_ecore_evas_wl_common_pointer_xy_get(const Ecore_Evas *ee EINA_UNUSED, Evas_Coord *x, Evas_Coord *y)
{
LOGFN(__FILE__, __LINE__, __FUNCTION__);

View File

@ -77,7 +77,7 @@ void _ecore_evas_wl_common_borderless_set(Ecore_Evas *ee, int borderless);
Evas_Object * _ecore_evas_wl_common_frame_add(Evas *evas);
void _ecore_evas_wl_common_frame_border_size_set(Evas_Object *obj, int fx, int fy, int fw, int fh);
void _ecore_evas_wl_common_pointer_xy_get(Ecore_Evas *ee, Evas_Coord *x, Evas_Coord *y);
void _ecore_evas_wl_common_pointer_xy_get(const Ecore_Evas *ee, Evas_Coord *x, Evas_Coord *y);
#ifdef BUILD_ECORE_EVAS_WAYLAND_SHM
void _ecore_evas_wayland_shm_resize(Ecore_Evas *ee, int location);