diff options
author | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2010-03-24 03:06:00 +0000 |
---|---|---|
committer | Gustavo Sverzut Barbieri <barbieri@gmail.com> | 2010-03-24 03:06:00 +0000 |
commit | 1b59cdcdd95fca5b41155e029efaa5e28cb455f6 (patch) | |
tree | e90eea268cacc18f966a4d6b2b25c58ac48e6550 /src/lib/elm_separator.c | |
parent | 28d39566a39df696e773d82a4be2ab387929a9ab (diff) | |
download | elementary-1b59cdcdd95fca5b41155e029efaa5e28cb455f6.tar.gz |
const and -Wextra, come on guys! :-/
SVN revision: 47409
Diffstat (limited to 'src/lib/elm_separator.c')
-rw-r--r-- | src/lib/elm_separator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/elm_separator.c b/src/lib/elm_separator.c index 46fd89bdd..9c81ad302 100644 --- a/src/lib/elm_separator.c +++ b/src/lib/elm_separator.c @@ -86,7 +86,7 @@ elm_separator_horizontal_set(Evas_Object *obj, Eina_Bool horizontal) } EAPI Eina_Bool -elm_separator_horizontal_get(Evas_Object *obj) +elm_separator_horizontal_get(const Evas_Object *obj) { ELM_CHECK_WIDTYPE(obj, widtype) EINA_FALSE; Widget_Data *wd = elm_widget_data_get(obj); |