diff options
author | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-29 14:48:48 +0900 |
---|---|---|
committer | Jean-Philippe Andre <jp.andre@samsung.com> | 2017-08-29 14:50:36 +0900 |
commit | c6c1751fe3b8d2a208803e6f7dd786fab68f4b15 (patch) | |
tree | de83f5e1f2ea676736b5f343061c2ecad667e90f /src/lib/elementary/elm_widget.h | |
parent | 233068c30c90c7cafbdcd7108f78ea0d353d26ad (diff) |
widget: Mark focus_region_show as protected (EO)
This function is meant to be used by the widgets themselves, or internal
features such as elm_access.
Also remove const tag: this function call is definitely modifying the
widget (panning around and all that).
Ref T5363
Diffstat (limited to 'src/lib/elementary/elm_widget.h')
-rw-r--r-- | src/lib/elementary/elm_widget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elementary/elm_widget.h b/src/lib/elementary/elm_widget.h index 89bdc94073..a089b35a83 100644 --- a/src/lib/elementary/elm_widget.h +++ b/src/lib/elementary/elm_widget.h | |||
@@ -722,7 +722,7 @@ EAPI Eina_Bool elm_widget_disabled_get(const Evas_Object *obj); | |||
722 | EAPI void elm_widget_show_region_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, Eina_Bool forceshow); | 722 | EAPI void elm_widget_show_region_set(Evas_Object *obj, Evas_Coord x, Evas_Coord y, Evas_Coord w, Evas_Coord h, Eina_Bool forceshow); |
723 | EAPI void elm_widget_show_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h); | 723 | EAPI void elm_widget_show_region_get(const Evas_Object *obj, Evas_Coord *x, Evas_Coord *y, Evas_Coord *w, Evas_Coord *h); |
724 | EAPI Eina_Bool elm_widget_focus_region_get(const Evas_Object *obj, Eina_Rectangle *r); | 724 | EAPI Eina_Bool elm_widget_focus_region_get(const Evas_Object *obj, Eina_Rectangle *r); |
725 | EAPI void elm_widget_focus_region_show(const Evas_Object *obj); | 725 | EAPI void elm_widget_focus_region_show(Evas_Object *obj); |
726 | EAPI void elm_widget_scroll_hold_push(Evas_Object *obj); | 726 | EAPI void elm_widget_scroll_hold_push(Evas_Object *obj); |
727 | EAPI void elm_widget_scroll_hold_pop(Evas_Object *obj); | 727 | EAPI void elm_widget_scroll_hold_pop(Evas_Object *obj); |
728 | EAPI int elm_widget_scroll_hold_get(const Evas_Object *obj); | 728 | EAPI int elm_widget_scroll_hold_get(const Evas_Object *obj); |