summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaehwan Kim <jae.hwan.kim@samsung.com>2015-10-22 09:36:35 +0900
committerJaehwan Kim <jae.hwan.kim@samsung.com>2015-10-22 09:40:19 +0900
commit21dc4443a58e3ffd0f46bfa7256c0fb15fb6730b (patch)
treea28106ad0c91cd0a24ea10d80ea9d3a6521ca15f
parent29884844d40f5f97f3bd8a5a093b531d5654bbc8 (diff)
downloadefl-21dc4443a58e3ffd0f46bfa7256c0fb15fb6730b.tar.gz
Revert "edje: add edje signal emit about swallow, text"
This reverts commit b1fa1c5aadc71881cb1e4e264d680ea5efa79a69. This feature will be commited to the next version.
-rw-r--r--src/lib/edje/edje_util.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/lib/edje/edje_util.c b/src/lib/edje/edje_util.c
index 6ef5d60b87..aa77208228 100644
--- a/src/lib/edje/edje_util.c
+++ b/src/lib/edje/edje_util.c
@@ -1442,10 +1442,6 @@ _edje_object_part_text_raw_set(Edje *ed, Evas_Object *obj, Edje_Real_Part *rp, c
_edje_recalc(ed);
if (ed->text_change.func)
ed->text_change.func(ed->text_change.data, obj, part);
- if (text)
- _edje_emit(ed, "text,set", rp->part->name);
- else
- _edje_emit(ed, "text,unset", rp->part->name);
return EINA_TRUE;
}
@@ -2890,7 +2886,6 @@ _edje_object_part_swallow(Eo *obj EINA_UNUSED, Edje *ed, const char *part, Evas_
eud->u.swallow.child = obj_swallow;
}
}
- _edje_emit(ed, "swallow", rp->part->name);
return EINA_TRUE;
}
@@ -3167,7 +3162,6 @@ _edje_object_part_unswallow(Eo *obj EINA_UNUSED, Edje *ed, Evas_Object *obj_swal
if (eud->type == EDJE_USER_SWALLOW && eud->u.swallow.child == obj_swallow)
{
_edje_user_definition_free(eud);
- _edje_emit(ed, "unswallow", rp->part->name);
return;
}
}
@@ -3188,7 +3182,6 @@ _edje_object_part_unswallow(Eo *obj EINA_UNUSED, Edje *ed, Evas_Object *obj_swal
* -zmike, 6 April 2015
*/
//_edje_recalc_do(ed);
- _edje_emit(ed, "unswallow", rp->part->name);
return;
}
}