aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/purkle/purkle.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/purkle/purkle.c')
-rw-r--r--src/purkle/purkle.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/purkle/purkle.c b/src/purkle/purkle.c
index b1a45e1..98bfd13 100644
--- a/src/purkle/purkle.c
+++ b/src/purkle/purkle.c
@@ -29,7 +29,7 @@ static winFang *purkleAdd(winFang *parent, int w, int h, EPhysics_World *world)
29 evas_obj_visibility_set(EINA_TRUE) 29 evas_obj_visibility_set(EINA_TRUE)
30 ); 30 );
31 elm_object_text_set(en, "History is shown here"); 31 elm_object_text_set(en, "History is shown here");
32 elm_layout_box_append(me->win, BOX, en); 32 elm_layout_box_append(me->win, WF_BOX, en);
33 eo_unref(en); 33 eo_unref(en);
34 34
35 wid = widgetAdd(me, ELM_OBJ_ENTRY_CLASS, me->win, ""); 35 wid = widgetAdd(me, ELM_OBJ_ENTRY_CLASS, me->win, "");
@@ -38,7 +38,7 @@ static winFang *purkleAdd(winFang *parent, int w, int h, EPhysics_World *world)
38 elm_obj_entry_scrollable_set(EINA_TRUE), 38 elm_obj_entry_scrollable_set(EINA_TRUE),
39 elm_obj_entry_editable_set(EINA_TRUE) 39 elm_obj_entry_editable_set(EINA_TRUE)
40 ); 40 );
41 elm_layout_box_append(me->win, BOX, wid->obj); 41 elm_layout_box_append(me->win, WF_BOX, wid->obj);
42 42
43 return me; 43 return me;
44} 44}