Oops, It's my mistake. Thank you for letting me know.
I send the right patch again.
-----Original Message-----
From: Bruno Dilly [mailto:[email protected]]
Sent: Friday, March 18, 2011 1:20 PM
To: Jihoon Kim
Cc: [email protected]
Subject: Re: [E-devel] [PATCH] elm_entry : use EINA_FALSE instead of 0 when
calling edje_object_part_text_select_allow_set
2011/3/18 Jihoon Kim <[email protected]>:
> Hi,
>
Hey Jihoon Kim,
looks like you attached the wrong patch.
Regards
> This is simple patch to use EINA_FALSE instead of 0 when calling
> edje_object_part_text_select_allow_set in elm_entry.c
> Would you please apply in svn?
>
>
>
----------------------------------------------------------------------------
--
> Colocation vs. Managed Hosting
> A question and answer guide to determining the best fit
> for your organization - today and in the future.
> http://p.sf.net/sfu/internap-sfd2d
> _______________________________________________
> enlightenment-devel mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
>
>
Index: elm_entry.c
===================================================================
--- elm_entry.c (revision 57835)
+++ elm_entry.c (working copy)
@@ -802,7 +802,7 @@ _cut(void *data, Evas_Object *obj __UNUSED__, void
/* Store it */
wd->selmode = EINA_FALSE;
- edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+ edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
elm_widget_scroll_hold_pop(data);
_store_selection(ELM_SEL_CLIPBOARD, data);
@@ -816,7 +816,7 @@ _copy(void *data, Evas_Object *obj __UNUSED__, voi
Widget_Data *wd = elm_widget_data_get(data);
if (!wd) return;
wd->selmode = EINA_FALSE;
- edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+ edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
elm_widget_scroll_hold_pop(data);
_store_selection(ELM_SEL_CLIPBOARD, data);
@@ -829,7 +829,7 @@ _cancel(void *data, Evas_Object *obj __UNUSED__, v
Widget_Data *wd = elm_widget_data_get(data);
if (!wd) return;
wd->selmode = EINA_FALSE;
- edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+ edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
elm_widget_scroll_hold_pop(data);
edje_object_part_text_select_none(wd->ent, "elm.text");
@@ -912,7 +912,7 @@ _long_press(void *data)
evas_object_show(wd->hoversel);
elm_hoversel_hover_begin(wd->hoversel);
}
- edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+ edje_object_part_text_select_allow_set(wd->ent, "elm.text",
EINA_FALSE);
edje_object_part_text_select_abort(wd->ent, "elm.text");
}
wd->longpress_timer = NULL;
@@ -1930,7 +1930,7 @@ elm_entry_select_none(Evas_Object *obj)
if (wd->selmode)
{
wd->selmode = EINA_FALSE;
- edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+ edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
}
wd->have_selection = EINA_FALSE;
@@ -1953,7 +1953,7 @@ elm_entry_select_all(Evas_Object *obj)
if (wd->selmode)
{
wd->selmode = EINA_FALSE;
- edje_object_part_text_select_allow_set(wd->ent, "elm.text", 0);
+ edje_object_part_text_select_allow_set(wd->ent, "elm.text", EINA_FALSE);
edje_object_signal_emit(wd->ent, "elm,state,select,off", "elm");
}
wd->have_selection = EINA_TRUE;
------------------------------------------------------------------------------
Colocation vs. Managed Hosting
A question and answer guide to determining the best fit
for your organization - today and in the future.
http://p.sf.net/sfu/internap-sfd2d
_______________________________________________
enlightenment-devel mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel