aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/purkle.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/extantz/purkle.c (renamed from src/extantz/chat.c)6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/extantz/chat.c b/src/extantz/purkle.c
index c19b936..590a84e 100644
--- a/src/extantz/chat.c
+++ b/src/extantz/purkle.c
@@ -3,20 +3,20 @@
3 3
4// TODO - This is to work around a bug in Elm entry, remove it when the bug is fixed. 4// TODO - This is to work around a bug in Elm entry, remove it when the bug is fixed.
5// The bug is that editable entry widgets cause the app to hang on exit. 5// The bug is that editable entry widgets cause the app to hang on exit.
6void _on_entry_del(void *data, Evas_Object *obj, void *event_info) 6static void _on_entry_del(void *data, Evas_Object *obj, void *event_info)
7{ 7{
8// winFang *me = data; 8// winFang *me = data;
9 9
10 elm_entry_editable_set(obj, EINA_FALSE); 10 elm_entry_editable_set(obj, EINA_FALSE);
11} 11}
12 12
13winFang *chat_add(globals *ourGlobals) 13winFang *purkleAdd(globals *ourGlobals)
14{ 14{
15 winFang *me; 15 winFang *me;
16 Widget *wid; 16 Widget *wid;
17 Evas_Object *en; 17 Evas_Object *en;
18 18
19 me = winFangAdd(ourGlobals->mainWindow, 30, 520, ourGlobals->win_w / 3, ourGlobals->win_h / 3, "chatter box", "chat"); 19 me = winFangAdd(ourGlobals->mainWindow, 30, 520, ourGlobals->win_w / 3, ourGlobals->win_h / 3, "chatter box", "purkle");
20 20
21 en = eo_add(ELM_OBJ_ENTRY_CLASS, me->win, 21 en = eo_add(ELM_OBJ_ENTRY_CLASS, me->win,
22 elm_obj_entry_scrollable_set(EINA_TRUE), 22 elm_obj_entry_scrollable_set(EINA_TRUE),