config - just sort up the func position. (static first)

This commit is contained in:
ChunEon Park 2014-02-18 20:07:30 +09:00
parent 4fe36539b0
commit e1ac55873e
1 changed files with 8 additions and 10 deletions

View File

@ -109,14 +109,6 @@ config_save(config_data *cd)
eet_close(ef);
}
void
config_edc_path_set(const char *edc_path)
{
config_data *cd = g_cd;
eina_stringshare_replace(&cd->edc_path, edc_path);
config_edj_path_update(cd);
}
static config_data *
config_load()
{
@ -180,8 +172,6 @@ config_load()
return cd;
}
static void
eddc_init()
{
@ -205,6 +195,14 @@ eddc_init()
auto_indent, EET_T_UCHAR);
}
void
config_edc_path_set(const char *edc_path)
{
config_data *cd = g_cd;
eina_stringshare_replace(&cd->edc_path, edc_path);
config_edj_path_update(cd);
}
void
config_init(const char *edc_path, const char *edc_img_path,
const char *edc_snd_path, const char *edc_fnt_path,