seoz pushed a commit to branch master.
http://git.enlightenment.org/core/elementary.git/commit/?id=88a0c5efcfc959568ee156952a9713df96b2a694
commit 88a0c5efcfc959568ee156952a9713df96b2a694
Author: Patryk Kaczmarek <d>
Date: Thu May 8 11:14:36 2014 +0900
access: fix typo _elm_access_object_unhilight ->
_elm_access_object_unhighlight
Summary: Name of that function is not proper in my opinion. Please consider
that revision.
Reviewers: raster, seoz, bluezery, stanluk, jaehwan, kimcinoo
Reviewed By: seoz
Differential Revision: https://phab.enlightenment.org/D827
---
src/lib/elm_access.c | 4 ++--
src/lib/elm_widget.h | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/lib/elm_access.c b/src/lib/elm_access.c
index 1ee74fa..fdb748a 100644
--- a/src/lib/elm_access.c
+++ b/src/lib/elm_access.c
@@ -307,7 +307,7 @@ _access_hover_mouse_out_cb(void *data, Evas *e EINA_UNUSED,
Evas_Object *obj EIN
ac = evas_object_data_get(data, "_elm_access");
if (!ac) return;
- _elm_access_object_unhilight(data);
+ _elm_access_object_unhighlight(data);
ELM_SAFE_FREE(ac->delay_timer, ecore_timer_del);
}
@@ -865,7 +865,7 @@ _elm_access_object_highlight(Evas_Object *obj)
}
EAPI void
-_elm_access_object_unhilight(Evas_Object *obj)
+_elm_access_object_unhighlight(Evas_Object *obj)
{
Evas_Object *o, *ptarget;
diff --git a/src/lib/elm_widget.h b/src/lib/elm_widget.h
index ab86570..cdca308 100644
--- a/src/lib/elm_widget.h
+++ b/src/lib/elm_widget.h
@@ -531,7 +531,7 @@ EAPI void _elm_access_read(Elm_Access_Info *ac,
int type, const Evas
EAPI void _elm_access_say(const char *txt);
EAPI Elm_Access_Info *_elm_access_info_get(const Evas_Object *obj);
EAPI void _elm_access_object_highlight(Evas_Object *obj);
-EAPI void _elm_access_object_unhilight(Evas_Object *obj);
+EAPI void _elm_access_object_unhighlight(Evas_Object *obj);
EAPI void _elm_access_object_highlight_disable(Evas *e);
EAPI void _elm_access_object_register(Evas_Object *obj,
Evas_Object *hoverobj);
EAPI void _elm_access_object_unregister(Evas_Object *obj,
Evas_Object *hoverobj);
--