aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/extantz/chat.c
diff options
context:
space:
mode:
authorDavid Walter Seikel2014-05-08 07:03:38 +1000
committerDavid Walter Seikel2014-05-08 07:03:38 +1000
commit1d7b6e9233967f7cde1c8872678b2db1bab8c539 (patch)
treedc2f2c964eb0c5dd8c09bcf0f2431735802446c8 /src/extantz/chat.c
parentIntroducing purkle. B-) (diff)
downloadSledjHamr-1d7b6e9233967f7cde1c8872678b2db1bab8c539.zip
SledjHamr-1d7b6e9233967f7cde1c8872678b2db1bab8c539.tar.gz
SledjHamr-1d7b6e9233967f7cde1c8872678b2db1bab8c539.tar.bz2
SledjHamr-1d7b6e9233967f7cde1c8872678b2db1bab8c539.tar.xz
Switch to purkle is complete.
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),