reflow some code

SVN revision: 76536
This commit is contained in:
Mike Blumenkrantz 2012-09-12 15:02:12 +00:00
parent 027cd7fdc9
commit 8f0aa351f8
1 changed files with 29 additions and 31 deletions

View File

@ -2875,6 +2875,8 @@ _e_gadcon_cb_dnd_move(void *data, const char *type __UNUSED__, void *event)
E_Event_Dnd_Move *ev;
E_Gadcon *gc;
E_Gadcon_Client *gcc = NULL;
int dx, dy;
Evas_Object *o;
ev = event;
gc = data;
@ -2884,10 +2886,7 @@ _e_gadcon_cb_dnd_move(void *data, const char *type __UNUSED__, void *event)
/* If we move in the newly entered gadcon */
else if (new_gcc->gadcon == gc)
gcc = new_gcc;
if (gcc)
{
Evas_Coord dx, dy;
Evas_Object *o;
if (!gcc) return;
if (gcc->state_info.resist > 0)
{
@ -2917,7 +2916,6 @@ _e_gadcon_cb_dnd_move(void *data, const char *type __UNUSED__, void *event)
}
e_gadcon_layout_thaw(gc->o_container);
}
}
static void
_e_gadcon_cb_dnd_leave(void *data, const char *type __UNUSED__, void *event __UNUSED__)