summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSubodh Kumar <s7158.kumar@samsung.com>2015-12-21 11:41:34 +0000
committerTom Hacohen <tom@stosb.com>2015-12-21 11:41:47 +0000
commita392f2f4bc0d80973b1eed68f61e0c7faf2c5d24 (patch)
treea32ba563227cd0f83290f4ad3d99c34968969168
parent36748107dabcebb148193548a31095cb8adfc9aa (diff)
downloadelementary-a392f2f4bc0d80973b1eed68f61e0c7faf2c5d24.tar.gz
Elm entry: Fix a typo
Summary: Fix a typo. Test Plan: NA Reviewers: tasn, herdsman Differential Revision: https://phab.enlightenment.org/D3476
-rw-r--r--src/lib/elm_entry.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elm_entry.c b/src/lib/elm_entry.c
index baedc2770..700116cd0 100644
--- a/src/lib/elm_entry.c
+++ b/src/lib/elm_entry.c
@@ -3758,7 +3758,7 @@ _cb_added(void *data EINA_UNUSED,
}
static Eina_Bool
-_cb_deled(void *data EINA_UNUSED,
+_cb_deleted(void *data EINA_UNUSED,
Eo *obj,
const Eo_Event_Description *desc EINA_UNUSED,
void *event_info)
@@ -3781,7 +3781,7 @@ _elm_entry_eo_base_constructor(Eo *obj, Elm_Entry_Data *_pd EINA_UNUSED)
evas_obj_smart_callbacks_descriptions_set(_smart_callbacks),
elm_interface_atspi_accessible_role_set(ELM_ATSPI_ROLE_ENTRY),
eo_event_callback_add(EO_EV_CALLBACK_ADD, _cb_added, NULL),
- eo_event_callback_add(EO_EV_CALLBACK_DEL, _cb_deled, NULL));
+ eo_event_callback_add(EO_EV_CALLBACK_DEL, _cb_deleted, NULL));
return obj;
}