From ed60e2482af66572a9ca3fa6584179b3b216a0e6 Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Fri, 29 Nov 2013 09:45:31 -0500 Subject: [PATCH] fix stringshare magic failure in theme dialog, unbreaks apply button --- src/modules/conf_theme/e_int_config_theme.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/conf_theme/e_int_config_theme.c b/src/modules/conf_theme/e_int_config_theme.c index a198ffc98..1caa603b4 100644 --- a/src/modules/conf_theme/e_int_config_theme.c +++ b/src/modules/conf_theme/e_int_config_theme.c @@ -523,7 +523,7 @@ _fill_data(E_Config_Dialog_Data *cfdata) if (theme) { snprintf(path, sizeof(path), "%s.edj", theme); - cfdata->theme = eina_stringshare_ref(path); + cfdata->theme = eina_stringshare_add(path); } else {