Path from Stephane Bauland <joligardon@gmail.com> for changing

evas_stringshare into eina_stringshare.



SVN revision: 37397
This commit is contained in:
Christopher Michael 2008-11-02 03:14:20 +00:00
parent c89f2ee5b6
commit 8bc1450b22
2 changed files with 4 additions and 4 deletions

View File

@ -154,8 +154,8 @@ _basic_apply_data(E_Config_Dialog *cfd, E_Config_Dialog_Data *cfdata)
pop->conf->zoom = cfdata->zoom;
pop->conf->alpha = cfdata->alpha;
if (pop->conf->theme) evas_stringshare_del(pop->conf->theme);
pop->conf->theme = evas_stringshare_add(cfdata->theme);
if (pop->conf->theme) eina_stringshare_del(pop->conf->theme);
pop->conf->theme = eina_stringshare_add(cfdata->theme);
e_config_save_queue();
e_border_button_bindings_grab_all();

View File

@ -134,7 +134,7 @@ _population_init(E_Module *m)
pop->conf->alpha = 200;
snprintf(buf, sizeof(buf), "%s/themes/default.edj", e_module_dir_get(m));
pop->conf->theme = evas_stringshare_add(buf);
pop->conf->theme = eina_stringshare_add(buf);
}
managers = e_manager_list();
@ -275,7 +275,7 @@ _population_shutdown(Population *pop)
pop->themes = eina_list_remove_list(pop->themes, pop->themes);
}
if (pop->conf->theme) evas_stringshare_del(pop->conf->theme);
if (pop->conf->theme) eina_stringshare_del(pop->conf->theme);
E_FREE(pop->conf);
E_CONFIG_DD_FREE(pop->conf_edd);