edje_edit: remove a redundant API declaration.

edje_edit_state_font_get has twice declaration in same header file.
This commit is contained in:
Jaehwan Kim 2015-09-23 15:22:44 +09:00
parent 601273522e
commit 3e5fddd72b
1 changed files with 2 additions and 14 deletions

View File

@ -4662,6 +4662,8 @@ EAPI const char * edje_edit_state_text_get(Evas_Object *obj, const char *part, c
EAPI Eina_Bool edje_edit_state_text_set(Evas_Object *obj, const char *part, const char *state, double value,const char *text);
/** Get font name for a given part state.
*
* Remember to free the returned string using edje_edit_string_free().
*
* @param obj Object being edited.
* @param part The name of the part to get the font of.
@ -5131,20 +5133,6 @@ EAPI Eina_Bool edje_edit_font_del(Evas_Object *obj, const char* alias);
*/
EAPI const char *edje_edit_font_path_get(Evas_Object *obj, const char *alias);
/** Get font name for a given part state.
*
* Remember to free the returned string using edje_edit_string_free().
*
* @param obj Object being edited.
* @param part Part that contain state.
* @param state The name of the state to get the name of the font used (not including the state value).
* @param value The state value.
*
* @return The name of the font used in the given part state.
*/
EAPI const char * edje_edit_state_font_get(Evas_Object *obj, const char *part, const char *state, double value);
//@}
/******************************************************************************/
/************************** IMAGES API ************************************/