diff options
Diffstat (limited to 'src/lib/edje/Edje_Edit.h')
-rw-r--r-- | src/lib/edje/Edje_Edit.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib/edje/Edje_Edit.h b/src/lib/edje/Edje_Edit.h index 917dd79e94..23611da296 100644 --- a/src/lib/edje/Edje_Edit.h +++ b/src/lib/edje/Edje_Edit.h | |||
@@ -3744,8 +3744,10 @@ EAPI char *edje_edit_script_get(Evas_Object *obj); | |||
3744 | * | 3744 | * |
3745 | * @param obj The object being edited | 3745 | * @param obj The object being edited |
3746 | * @param code The Embryo source | 3746 | * @param code The Embryo source |
3747 | * | ||
3748 | * @return EINA_TRUE if successful, EINA_FALSE otherwise. | ||
3747 | */ | 3749 | */ |
3748 | EAPI void edje_edit_script_set(Evas_Object *obj, const char *code); | 3750 | EAPI Eina_Bool edje_edit_script_set(Evas_Object *obj, const char *code); |
3749 | 3751 | ||
3750 | /** | 3752 | /** |
3751 | * Get the Embryo script for the given program. | 3753 | * Get the Embryo script for the given program. |
@@ -3775,8 +3777,10 @@ EAPI char *edje_edit_script_program_get(Evas_Object *obj, const char *prog); | |||
3775 | * @param obj The object being edited | 3777 | * @param obj The object being edited |
3776 | * @param prog The program name. | 3778 | * @param prog The program name. |
3777 | * @param code The Embryo source | 3779 | * @param code The Embryo source |
3780 | * | ||
3781 | * @return EINA_TRUE if successful, EINA_FALSE otherwise. | ||
3778 | */ | 3782 | */ |
3779 | EAPI void edje_edit_script_program_set(Evas_Object *obj, const char *prog, const char *code); | 3783 | EAPI Eina_Bool edje_edit_script_program_set(Evas_Object *obj, const char *prog, const char *code); |
3780 | 3784 | ||
3781 | /** | 3785 | /** |
3782 | * Compile the Embryo script for the given object | 3786 | * Compile the Embryo script for the given object |