elm_list_item -> elm_object_item

SVN revision: 67401
This commit is contained in:
Mike Blumenkrantz 2012-01-20 19:20:17 +00:00
parent 5dc124c0c5
commit 51c4495cb3
1 changed files with 6 additions and 6 deletions

View File

@ -353,7 +353,7 @@ EAPI const char *elm_object_item_cursor_get(const Elm_Object_It
* *
* @ingroup General * @ingroup General
*/ */
EAPI void elm_list_item_cursor_unset(Elm_Object_Item *item); EAPI void elm_object_item_cursor_unset(Elm_Object_Item *item);
/** /**
* Set a different @b style for a given custom cursor set for an * Set a different @b style for a given custom cursor set for an
@ -371,14 +371,14 @@ EAPI void elm_list_item_cursor_unset(Elm_Object_Item *it
* *
* @warning Before you set a cursor style you should have definen a * @warning Before you set a cursor style you should have definen a
* custom cursor previously on the item, with * custom cursor previously on the item, with
* elm_list_item_cursor_set() * elm_object_item_cursor_set()
* *
* @see elm_object_item_cursor_engine_only_set() * @see elm_object_item_cursor_engine_only_set()
* @see elm_object_item_cursor_style_get() * @see elm_object_item_cursor_style_get()
* *
* @ingroup General * @ingroup General
*/ */
EAPI void elm_list_item_cursor_style_set(Elm_Object_Item *item, const char *style); EAPI void elm_object_item_cursor_style_set(Elm_Object_Item *item, const char *style);
/** /**
* Get the current @b style set for a given item's custom * Get the current @b style set for a given item's custom
@ -392,7 +392,7 @@ EAPI void elm_list_item_cursor_style_set(Elm_Object_Item
* *
* @ingroup General * @ingroup General
*/ */
EAPI const char *elm_list_item_cursor_style_get(const Elm_Object_Item *item); EAPI const char *elm_object_item_cursor_style_get(const Elm_Object_Item *item);
/** /**
* Set if the (custom)cursor for a given item should be * Set if the (custom)cursor for a given item should be
@ -412,7 +412,7 @@ EAPI const char *elm_list_item_cursor_style_get(const Elm_Objec
* *
* @ingroup General * @ingroup General
*/ */
EAPI void elm_list_item_cursor_engine_only_set(Elm_Object_Item *item, Eina_Bool engine_only); EAPI void elm_object_item_cursor_engine_only_set(Elm_Object_Item *item, Eina_Bool engine_only);
/** /**
* Get if the (custom) cursor for a given item is being * Get if the (custom) cursor for a given item is being
@ -428,5 +428,5 @@ EAPI void elm_list_item_cursor_engine_only_set(Elm_Objec
* *
* @ingroup General * @ingroup General
*/ */
EAPI Eina_Bool elm_list_item_cursor_engine_only_get(const Elm_Object_Item *item); EAPI Eina_Bool elm_object_item_cursor_engine_only_get(const Elm_Object_Item *item);