elm_win.c: removed build warning when there is no wayland support.

This commit is contained in:
Daniel Juyung Seo 2013-11-15 21:52:19 +09:00
parent a876201c28
commit 16e2c0779f
1 changed files with 4 additions and 1 deletions

View File

@ -1704,7 +1704,8 @@ _elm_ee_wlwin_get(const Ecore_Evas *ee)
if (ee) win = ecore_evas_wayland_window_get(ee);
}
return win;
#else
(void)ee;
#endif
return NULL;
}
@ -5434,6 +5435,8 @@ _wl_window_get(Eo *obj EINA_UNUSED, void *_pd, va_list *list)
*ret = elm_win_wl_window_get(sd->parent);
return;
}
#else
(void)_pd;
#endif
*ret = NULL;
}