Don't use internal functions!

SVN revision: 25514
This commit is contained in:
sebastid 2006-09-06 07:05:42 +00:00 committed by sebastid
parent 1d44790ef5
commit 3c480bdc56
1 changed files with 6 additions and 6 deletions

View File

@ -74,22 +74,22 @@ get(const char *key)
printf("\n");
break;
case ECORE_CONFIG_INT:
printf("%ld\n", _ecore_config_int_get(e));
printf("%ld\n", ecore_config_int_get(key));
break;
case ECORE_CONFIG_BLN:
printf("%d\n", _ecore_config_boolean_get(e));
printf("%d\n", ecore_config_boolean_get(key));
break;
case ECORE_CONFIG_FLT:
printf("%lf\n", _ecore_config_float_get(e));
printf("%lf\n", ecore_config_float_get(key));
break;
case ECORE_CONFIG_STR:
temp = _ecore_config_string_get(e);
temp = ecore_config_string_get(key);
break;
case ECORE_CONFIG_RGB:
temp = _ecore_config_argbstr_get(e);
temp = ecore_config_argbstr_get(key);
break;
case ECORE_CONFIG_THM:
temp = _ecore_config_theme_get(e);
temp = ecore_config_theme_get(key);
break;
default:
fprintf(stderr, "Property has unrecognized type");