From d5d869e9ec2c54db9e3ff25c518d0b57ee362c1e Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 5 May 2014 00:55:37 +1000 Subject: fangWin -> winFang and related changes. --- src/extantz/chat.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/extantz/chat.c') diff --git a/src/extantz/chat.c b/src/extantz/chat.c index e814842..2155541 100644 --- a/src/extantz/chat.c +++ b/src/extantz/chat.c @@ -5,18 +5,18 @@ // The bug is that editable entry widgets cause the app to hang on exit. void _on_entry_del(void *data, Evas_Object *obj, void *event_info) { -// fangWin *me = data; +// winFang *me = data; elm_entry_editable_set(obj, EINA_FALSE); } -fangWin *chat_add(globals *ourGlobals) +winFang *chat_add(globals *ourGlobals) { - fangWin *me; + winFang *me; Widget *wid; Evas_Object *bx, *en; - me = fang_win_add(ourGlobals); + me = winFangAdd(ourGlobals); bx = eo_add(ELM_OBJ_BOX_CLASS, me->win, evas_obj_size_hint_weight_set(EVAS_HINT_EXPAND, EVAS_HINT_EXPAND), @@ -46,6 +46,6 @@ fangWin *chat_add(globals *ourGlobals) evas_object_show(bx); eo_unref(bx); - fang_win_complete(ourGlobals, me, 30, 500, ourGlobals->win_w / 3, ourGlobals->win_h / 3); + winFangComplete(ourGlobals, me, 30, 500, ourGlobals->win_w / 3, ourGlobals->win_h / 3); return me; } -- cgit v1.1