raster pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=d477e1be7ad7671f97936083b55640adfec7181b
commit d477e1be7ad7671f97936083b55640adfec7181b Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com> Date: Mon Jul 11 17:28:51 2016 +0900 open keys - fix compiler warnings --- src/bin/options_keys.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/bin/options_keys.c b/src/bin/options_keys.c index d74089c..9dd5b6a 100644 --- a/src/bin/options_keys.c +++ b/src/bin/options_keys.c @@ -6,6 +6,7 @@ #include "options.h" #include "options_keys.h" #include "keyin.h" +#include "utils.h" /*XXX: can have only one widget at a time⦠*/ static Config *_config; @@ -151,7 +152,7 @@ _cb_mouse_down(void *data EINA_UNUSED, Evas *e EINA_UNUSED, static void _hover_sizing_eval(void) { - Evas_Coord x = 0, y = 0, w = 0, h = 0, min_w, min_h, new_x, new_y; + Evas_Coord x = 0, y = 0, w = 0, h = 0; evas_object_geometry_get(_fr, &x, &y, &w, &h); #if (ECORE_VERSION_MAJOR > 1) || (ECORE_VERSION_MINOR >= 8) evas_object_geometry_set(_layout, x, y, w, h); --