missing consts...

SVN revision: 54578
This commit is contained in:
Gustavo Sverzut Barbieri 2010-11-16 08:18:12 +00:00
parent 28a0b763d2
commit e4d70b8f89
2 changed files with 4 additions and 4 deletions

View File

@ -324,7 +324,7 @@ EAPI Eina_Bool edje_edit_data_del(Evas_Object *obj, const char *itemname);
*
* @return Value of the given entry, or NULL if not found.
*/
EAPI const char * edje_edit_data_value_get(Evas_Object *obj, char *itemname);
EAPI const char * edje_edit_data_value_get(Evas_Object *obj, const char *itemname);
/** Set the data associated with the given itemname.
*
@ -383,7 +383,7 @@ EAPI Eina_Bool edje_edit_group_data_del(Evas_Object *obj, const char *itemname);
*
* @return Value of the data entry or NULL if not found.
*/
EAPI const char * edje_edit_group_data_value_get(Evas_Object *obj, char *itemname);
EAPI const char * edje_edit_group_data_value_get(Evas_Object *obj, const char *itemname);
/** Set the data associated with the given itemname.
*

View File

@ -1287,7 +1287,7 @@ edje_edit_data_del(Evas_Object *obj, const char *itemname)
}
EAPI const char *
edje_edit_group_data_value_get(Evas_Object * obj, char *key)
edje_edit_group_data_value_get(Evas_Object * obj, const char *key)
{
Edje_String *value;
@ -1306,7 +1306,7 @@ edje_edit_group_data_value_get(Evas_Object * obj, char *key)
}
EAPI const char *
edje_edit_data_value_get(Evas_Object * obj, char *itemname)
edje_edit_data_value_get(Evas_Object * obj, const char *itemname)
{
Edje_String *value;