summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Houston <stephen@localhost.localdomain>2018-01-12 16:58:16 -0600
committerStephen Houston <stephen@localhost.localdomain>2018-01-12 16:58:16 -0600
commitf4cff7229f673e79279cdf0ed51243eb00f631a2 (patch)
tree75adf896a5277d3393cb22803b7e677a82d2666a
parent0fa5d3d0e3d74007ae982d61e34e0e0d02f9bfab (diff)
downloadenlightenment-f4cff7229f673e79279cdf0ed51243eb00f631a2.tar.gz
Mark unused parameters as EINA_UNUSED and remove unused variables.
-rw-r--r--src/bin/e_gadget_runner.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/bin/e_gadget_runner.c b/src/bin/e_gadget_runner.c
index 3da1024ea3..c1a57d9c8d 100644
--- a/src/bin/e_gadget_runner.c
+++ b/src/bin/e_gadget_runner.c
@@ -639,7 +639,7 @@ tooltip_hide(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info
}
static void
-tooltip_hints(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED)
+tooltip_hints(void *data EINA_UNUSED, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED)
{
int w, h;
evas_object_size_hint_aspect_get(obj, NULL, &w, &h);
@@ -693,7 +693,6 @@ popup_added(void *data, Evas_Object *obj EINA_UNUSED, void *event_info)
tt = &inst->base;
if (tt)
{
- int w, h;
tt->tooltip_surface = surface;
tt->tooltip_content = event_info;
evas_object_data_set(event_info, "instance", inst);