aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/chat.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-05 04:58:31 +1000
committerDavid Walter Seikel2014-05-05 04:58:31 +1000
commit811750155227279ae09dc4258f411687f659f690 (patch)
treef977323dadf1e249e83c3da640d35cb88633113e /src/extantz/chat.c
parentwinFang no longer depends on ourGlobals. (diff)
downloadSledjHamr-811750155227279ae09dc4258f411687f659f690.zip
SledjHamr-811750155227279ae09dc4258f411687f659f690.tar.gz
SledjHamr-811750155227279ae09dc4258f411687f659f690.tar.bz2
SledjHamr-811750155227279ae09dc4258f411687f659f690.tar.xz
Merge winFangComplete into winFangAdd.
Diffstat (limited to '')
-rw-r--r--src/extantz/chat.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/extantz/chat.c b/src/extantz/chat.c
index e0aa9da..5036c95 100644
--- a/src/extantz/chat.c
+++ b/src/extantz/chat.c
@@ -16,7 +16,7 @@ winFang *chat_add(globals *ourGlobals)
16 Widget *wid; 16 Widget *wid;
17 Evas_Object *bx, *en; 17 Evas_Object *bx, *en;
18 18
19 me = winFangAdd(ourGlobals->win); 19 me = winFangAdd(ourGlobals->win, 30, 500, ourGlobals->win_w / 3, ourGlobals->win_h / 3);
20 eina_clist_add_head(&ourGlobals->winFangs, &me->node); 20 eina_clist_add_head(&ourGlobals->winFangs, &me->node);
21 21
22 bx = eo_add(ELM_OBJ_BOX_CLASS, me->win, 22 bx = eo_add(ELM_OBJ_BOX_CLASS, me->win,
@@ -47,6 +47,5 @@ winFang *chat_add(globals *ourGlobals)
47 evas_object_show(bx); 47 evas_object_show(bx);
48 eo_unref(bx); 48 eo_unref(bx);
49 49
50 winFangComplete(me, 30, 500, ourGlobals->win_w / 3, ourGlobals->win_h / 3);
51 return me; 50 return me;
52} 51}