cleanup unused variables and parameters for pager module

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2016-11-03 11:27:28 -04:00
parent d2104b23af
commit 99e89b708f
1 changed files with 2 additions and 4 deletions

View File

@ -245,7 +245,6 @@ static void
_pager_orient(Instance *inst, E_Gadget_Site_Orient orient) _pager_orient(Instance *inst, E_Gadget_Site_Orient orient)
{ {
int aspect_w, aspect_h; int aspect_w, aspect_h;
double aspect_ratio;
if (inst->o_pager) if (inst->o_pager)
{ {
@ -318,7 +317,6 @@ static Pager *
_pager_new(Evas *evas) _pager_new(Evas *evas)
{ {
Pager *p; Pager *p;
E_Zone *zone;
p = E_NEW(Pager, 1); p = E_NEW(Pager, 1);
p->inst = NULL; p->inst = NULL;
@ -814,7 +812,7 @@ _pager_cb_obj_show(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED
} }
static void static void
_pager_cb_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_info EINA_UNUSED) _pager_cb_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj EINA_UNUSED, void *event_info EINA_UNUSED)
{ {
Instance *inst = data; Instance *inst = data;
Pager *p = inst->pager; Pager *p = inst->pager;
@ -828,7 +826,7 @@ _pager_cb_move(void *data, Evas *e EINA_UNUSED, Evas_Object *obj, void *event_in
} }
static Evas_Object * static Evas_Object *
_pager_gadget_configure(Evas_Object *g) _pager_gadget_configure(Evas_Object *g EINA_UNUSED)
{ {
if (!pager_config) return NULL; if (!pager_config) return NULL;
if (cfg_dialog) return NULL; if (cfg_dialog) return NULL;