From 61b0f4e430957e01ccaab705200cc35c0e3af40d Mon Sep 17 00:00:00 2001 From: sanjeev Date: Wed, 7 Mar 2012 15:56:05 +0000 Subject: [PATCH] Fix compile issues. Signed-off-by: Sanjeev BA git-svn-id: svn+ssh://svn.enlightenment.org/var/svn/e/trunk/elementary@68978 7cbeb6ba-43b4-40fd-8cce-4c39aea84d33 --- src/lib/elc_popup.c | 2 +- src/lib/elm_web.c | 2 +- src/lib/elm_web.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/elc_popup.c b/src/lib/elc_popup.c index 62731bc..899ca22 100644 --- a/src/lib/elc_popup.c +++ b/src/lib/elc_popup.c @@ -1306,7 +1306,7 @@ elm_popup_content_text_wrap_type_set(Evas_Object *obj, Elm_Wrap_Type wrap) } EAPI Elm_Wrap_Type -elm_popup_content_text_wrap_type_get(Evas_Object *obj) +elm_popup_content_text_wrap_type_get(const Evas_Object *obj) { ELM_CHECK_WIDTYPE(obj, widtype) ELM_WRAP_LAST; Widget_Data *wd = elm_widget_data_get(obj); diff --git a/src/lib/elm_web.c b/src/lib/elm_web.c index ff711d7..fe24e46 100644 --- a/src/lib/elm_web.c +++ b/src/lib/elm_web.c @@ -1576,7 +1576,7 @@ elm_web_forward_possible(Evas_Object *obj) } EAPI Eina_Bool -elm_web_forward_possible(Evas_Object *obj) +elm_web_forward_possible_get(const Evas_Object *obj) { ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE; #ifdef HAVE_ELEMENTARY_WEB diff --git a/src/lib/elm_web.h b/src/lib/elm_web.h index 9980238..f20ac86 100644 --- a/src/lib/elm_web.h +++ b/src/lib/elm_web.h @@ -745,7 +745,7 @@ EAPI Eina_Bool elm_web_back(Evas_Object *obj); * @return EINA_TRUE on success, EINA_FALSE otherwise * * @see elm_web_history_enabled_set() - * @see elm_web_forward_possible() + * @see elm_web_forward_possible_get() * @see elm_web_back() * @see elm_web_navigate() */ @@ -764,7 +764,7 @@ EAPI Eina_Bool elm_web_forward(Evas_Object *obj); * history exists to jump the given number of steps * * @see elm_web_history_enabled_set() - * @see elm_web_navigate_possible() + * @see elm_web_navigate_possible_get() * @see elm_web_back() * @see elm_web_forward() */ -- 2.7.4