[elementary/elm_entry] Were these signals(copy, cut) intentionally

deleted? Anyway ~ I added them becasue they were there :)


SVN revision: 67684
This commit is contained in:
WooHyun Jung 2012-02-02 02:33:14 +00:00
parent 0a60098096
commit d4a1037e63
1 changed files with 2 additions and 0 deletions

View File

@ -1649,12 +1649,14 @@ _signal_entry_paste_request(void *data, Evas_Object *obj __UNUSED__, const char
static void
_signal_entry_copy_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
{
evas_object_smart_callback_call(data, SIG_SELECTION_COPY, NULL);
_copy(data, NULL, NULL);
}
static void
_signal_entry_cut_notify(void *data, Evas_Object *obj __UNUSED__, const char *emission __UNUSED__, const char *source __UNUSED__)
{
evas_object_smart_callback_call(data, SIG_SELECTION_CUT, NULL);
_cut(data, NULL, NULL);
}