summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hirt <daniel.hirt@samsung.com>2016-06-13 17:00:17 +0000
committerDaniel Hirt <daniel.hirt@samsung.com>2016-06-14 11:25:17 +0000
commitfbcafbc33afcd280962a3d703cf9f14d365ad296 (patch)
tree1ca75fa1f578334e02721c8fd5ce3279d685a5d4
parent1728b9ea062ecd9139b745eeb66cc3c9bca492af (diff)
downloadefl-fbcafbc33afcd280962a3d703cf9f14d365ad296.tar.gz
Efl.Ui.Text: remove unused variable
-rw-r--r--src/lib/elementary/efl_ui_text.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/elementary/efl_ui_text.c b/src/lib/elementary/efl_ui_text.c
index 52e7b6847d..3199df0f62 100644
--- a/src/lib/elementary/efl_ui_text.c
+++ b/src/lib/elementary/efl_ui_text.c
@@ -228,7 +228,7 @@ struct _Mod_Api
static void _create_selection_handlers(Evas_Object *obj, Efl_Ui_Text_Data *sd);
static void _magnifier_move(void *data);
static void _update_decorations(Eo *obj, Eo *text_obj);
-static void _create_text_cursors(Eo *obj, Efl_Ui_Text_Data *sd);
+static void _create_text_cursors(Efl_Ui_Text_Data *sd);
static Eina_Bool _efl_ui_text_changed_cb(void *data EINA_UNUSED, const Eo_Event *event);
static Eina_Bool _efl_ui_text_selection_changed_cb(void *data EINA_UNUSED, const Eo_Event *event);
static Eina_Bool _efl_ui_text_cursor_changed_cb(void *data EINA_UNUSED, const Eo_Event *event);
@@ -3970,7 +3970,7 @@ _efl_ui_text_evas_object_smart_add(Eo *obj, Efl_Ui_Text_Data *priv)
if (_elm_config->desktop_entry)
priv->sel_handler_disabled = EINA_TRUE;
- _create_text_cursors(obj, priv);
+ _create_text_cursors(priv);
}
static void
@@ -5884,7 +5884,7 @@ _decoration_create(Efl_Ui_Text_Data *sd, const char *file,
* Creates the cursors, if not created.
*/
static void
-_create_text_cursors(Eo *obj, Efl_Ui_Text_Data *sd)
+_create_text_cursors(Efl_Ui_Text_Data *sd)
{
const char *file;
efl_file_get(sd->entry_edje, &file, NULL);