diff options
author | David Walter Seikel | 2014-05-12 02:47:54 +1000 |
---|---|---|
committer | David Walter Seikel | 2014-05-12 02:47:54 +1000 |
commit | a0f30eea71e05f114e6a708b07768995c884914c (patch) | |
tree | 5735ce1e4a072b6a15280e16d6c053cf0fd71b3d /src/purkle | |
parent | Move the callback comments. (diff) | |
download | SledjHamr-a0f30eea71e05f114e6a708b07768995c884914c.zip SledjHamr-a0f30eea71e05f114e6a708b07768995c884914c.tar.gz SledjHamr-a0f30eea71e05f114e6a708b07768995c884914c.tar.bz2 SledjHamr-a0f30eea71e05f114e6a708b07768995c884914c.tar.xz |
Fix up winFang move and resize. Still more to fix here though.
Diffstat (limited to 'src/purkle')
-rw-r--r-- | src/purkle/purkle.c | 4 |
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 | } |