k-s is right - the func from header needed a remove.. because func in

c was wrong name... not because it was gone. fix func in c file and
restore header decl.



SVN revision: 69057
This commit is contained in:
Carsten Haitzler 2012-03-08 13:51:58 +00:00
parent ec5b4619cb
commit e624259b02
2 changed files with 15 additions and 1 deletions

View File

@ -1589,7 +1589,7 @@ elm_web_forward_possible_get(Evas_Object *obj)
}
EAPI Eina_Bool
elm_web_navigate_possible(Evas_Object *obj, int steps)
elm_web_navigate_possible_get(Evas_Object *obj, int steps)
{
ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE;
#ifdef HAVE_ELEMENTARY_WEB

View File

@ -789,6 +789,20 @@ EAPI Eina_Bool elm_web_back_possible_get(Evas_Object *obj);
*/
EAPI Eina_Bool elm_web_forward_possible_get(Evas_Object *obj);
/**
* Queries whether it's possible to jump the given number of steps
*
* The @p steps value can be a negative integer to back in history, or a
* positive to move forward.
*
* @param obj The web object
* @param steps The number of steps to check for
*
* @return EINA_TRUE if enough history exists to perform the given jump,
* EINA_FALSE otherwise
*/
EAPI Eina_Bool elm_web_navigate_possible_get(Evas_Object *obj, int steps);
/**
* Gets whether browsing history is enabled for the given object
*