formatting

SVN revision: 78421
This commit is contained in:
Mike Blumenkrantz 2012-10-25 07:47:26 +00:00
parent ebef167dab
commit 10903ffc60
2 changed files with 163 additions and 156 deletions

View File

@ -220,3 +220,4 @@ _e_init_cb_exe_event_del(void *data __UNUSED__, int type __UNUSED__, void *event
}
return ECORE_CALLBACK_RENEW;
}

View File

@ -106,10 +106,14 @@ main(int argc, char **argv)
);
exit(0);
}
else if (!theme) theme = argv[i];
else if (font_hinting < 0) font_hinting = atoi(argv[i]);
else if (!title) title = argv[i];
else if (!verstr) verstr = argv[i];
else if (!theme)
theme = argv[i];
else if (font_hinting < 0)
font_hinting = atoi(argv[i]);
else if (!title)
title = argv[i];
else if (!verstr)
verstr = argv[i];
else fpath = eina_list_append(fpath, argv[i]);
}
@ -214,10 +218,12 @@ _e_ipc_cb_server_data(void *data __UNUSED__, int type __UNUSED__, void *event)
case 1:
if (e->data) e_init_status_set(e->data);
break;
case 2:
/* quit now */
e_init_done();
break;
default:
break;
}
@ -395,7 +401,6 @@ e_init_done(void)
_e_init_timeout_timer = ecore_timer_add(60.0, _e_init_cb_timeout, NULL);
}
static void
_e_init_cb_signal_disable(void *data __UNUSED__, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
{
@ -503,3 +508,4 @@ _e_init_evas_new(Ecore_X_Window root, int w, int h, Ecore_X_Window *winret)
return ee;
}